terraform/config/testdata/import.tf

11 lines
139 B
Terraform
Raw Normal View History

2014-05-31 02:38:35 +02:00
variable "foo" {
2014-08-05 07:04:48 +02:00
default = "bar"
description = "bar"
2014-05-31 02:38:35 +02:00
}
provider "aws" {
2014-08-05 07:04:48 +02:00
foo = "bar"
2014-05-31 02:38:35 +02:00
}
resource "aws_security_group" "web" {}