terraform/config/test-fixtures/import.tf

13 lines
167 B
HCL

import "import/one.tf";
variable "foo" {
default = "bar";
description = "bar";
}
provider "aws" {
foo = "bar";
}
resource "aws_security_group" "web" {}