github.com/terramate-io/tf@v0.0.0-20230830114523-fce866b4dfcd/command/testdata/test/with_setup_module/setup/main.tf (about) 1 variable "value" { 2 type = string 3 } 4 5 variable "id" { 6 type = string 7 } 8 9 resource "test_resource" "managed" { 10 provider = setup 11 id = var.id 12 value = var.value 13 }