github.com/eliastor/durgaform@v0.0.0-20220816172711-d0ab2d17673e/internal/durgaform/testdata/plan-module-var-with-default-value/inner/main.tf (about)

     1  variable "im_a_string" {
     2    type = string
     3  }
     4  
     5  variable "service_region_ami" {
     6    type = map(string)
     7    default = {
     8      us-east-1 = "ami-e4c9db8e"
     9    }
    10  }
    11  
    12  resource "null_resource" "noop" {}