mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-04 13:17:43 -06:00
13 lines
167 B
HCL
13 lines
167 B
HCL
import "import/one.tf";
|
|
|
|
variable "foo" {
|
|
default = "bar";
|
|
description = "bar";
|
|
}
|
|
|
|
provider "aws" {
|
|
foo = "bar";
|
|
}
|
|
|
|
resource "aws_security_group" "web" {}
|