8 lines
71 B
Terraform
8 lines
71 B
Terraform
|
terraform {
|
||
|
backend "local" {}
|
||
|
}
|
||
|
|
||
|
output "foo" {
|
||
|
value = "bar"
|
||
|
}
|