github.com/iaas-resource-provision/iaas-rpc@v1.0.7-0.20211021023331-ed21f798c408/internal/command/testdata/validate-invalid/interpolation/main.tf (about)

     1  variable "otherresourcename" {
     2    default = "aws_instance.web1"
     3  }
     4  
     5  variable "vairable_with_interpolation" {
     6    default = "${var.otherresourcename}"
     7  }
     8  
     9  resource "aws_instance" "web" {
    10    depends_on = ["${var.otherresourcename}}"]
    11  }