mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-23 10:54:11 -04:00
* stacks: include resources in state when calculating required providers * also support apply time * add copywrite headers
19 lines
283 B
HCL
19 lines
283 B
HCL
terraform {
|
|
required_providers {
|
|
terraform = {
|
|
source = "terraform.io/builtin/terraform"
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "terraform_data" "main" {
|
|
input = "hello"
|
|
}
|
|
|
|
output "input" {
|
|
value = terraform_data.main.input
|
|
}
|
|
|
|
output "output" {
|
|
value = terraform_data.main.output
|
|
}
|