pulumi/tests/testdata/aws_tf/main.tf

8 lines
156 B
HCL

resource "aws_instance" "app_server" {
ami = "ami-830c94e3"
instance_type = "t2.micro"
tags = {
Name = "ExampleAppServerInstance"
}
}