terraform/config/test-fixtures/import.tf

13 lines
179 B
Terraform
Raw Normal View History

2014-05-24 00:11:57 +02:00
import "import/one.tf";
variable "foo" {
default = "bar";
description = "bar";
}
2014-05-24 01:25:54 +02:00
2014-05-26 03:05:18 +02:00
provider "aws" {
foo = "bar";
}
2014-05-24 01:25:54 +02:00
resource "aws_security_group" "web" {}