mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -04:00
16 lines
231 B
HCL
16 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"
|
|
}
|