You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/testdata/test/with_provider_alias/main.tf

13 lines
200 B

variable "managed_id" {
type = string
}
data "test_data_source" "managed_data" {
id = var.managed_id
}
resource "test_resource" "created" {
value = data.test_data_source.managed_data.value
}