mirror of
https://github.com/hashicorp/terraform.git
synced 2026-06-09 00:42:48 -04:00
17 lines
231 B
HCL
17 lines
231 B
HCL
|
|
stack "nested" {
|
||
|
|
source = "example.com/awesomecorp/nested/happycloud"
|
||
|
|
version = "< 2.0.0"
|
||
|
|
|
||
|
|
inputs = {
|
||
|
|
name = var.name
|
||
|
|
provider = provider.null.a
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
provider "null" "a" {
|
||
|
|
}
|
||
|
|
|
||
|
|
locals {
|
||
|
|
sound = "bleep bloop"
|
||
|
|
}
|