10 lines
121 B
HCL
10 lines
121 B
HCL
provider "aws" {
|
|
foo = "bar"
|
|
}
|
|
|
|
resource "aws_instance" "test" {
|
|
provisioner "shell" {
|
|
test_string = "foo"
|
|
}
|
|
}
|