opentofu/terraform/testdata/graph-tainted/main.tf
2019-06-30 10:16:15 +02:00

19 lines
326 B
HCL

variable "foo" {
default = "bar"
description = "bar"
}
provider "aws" {
foo = "${openstack_floating_ip.random.value}"
}
resource "aws_security_group" "firewall" {}
resource "aws_instance" "web" {
ami = "${var.foo}"
security_groups = [
"foo",
"${aws_security_group.firewall.foo}"
]
}