Fix advanced customization docs for Terraform v0.12
* Use Terraform v0.12 syntax in the Container Linux Config snippet customization docs
This commit is contained in:
parent
3d5be86aae
commit
d35c1cb9fb
|
@ -78,12 +78,12 @@ module "digital-ocean-nemo" {
|
|||
controller_count = 1
|
||||
worker_count = 2
|
||||
controller_clc_snippets = [
|
||||
"${file("./custom-files")}",
|
||||
"${file("./custom-units")}",
|
||||
file("./custom-files"),
|
||||
file("./custom-units"),
|
||||
]
|
||||
worker_clc_snippets = [
|
||||
"${file("./custom-files")}",
|
||||
"${file("./custom-units")}",
|
||||
file("./custom-files"),
|
||||
file("./custom-units")",
|
||||
]
|
||||
...
|
||||
}
|
||||
|
@ -100,12 +100,10 @@ module "bare-metal-mercury" {
|
|||
"node3",
|
||||
]
|
||||
clc_snippets = {
|
||||
"node2" = [
|
||||
"${file("./units/hello.yaml")}"
|
||||
]
|
||||
"node2" = [file("./units/hello.yaml")]
|
||||
"node3" = [
|
||||
"${file("./units/world.yaml")}",
|
||||
"${file("./units/hello.yaml")}",
|
||||
file("./units/world.yaml"),
|
||||
file("./units/hello.yaml"),
|
||||
]
|
||||
}
|
||||
...
|
||||
|
|
|
@ -16,7 +16,7 @@ Create a cluster following the AWS [tutorial](../cl/aws.md#cluster). Define a wo
|
|||
|
||||
```tf
|
||||
module "tempest-worker-pool" {
|
||||
source = "git::https://github.com/poseidon/typhoon//aws/container-linux/kubernetes/workers?ref=v1.14.4"
|
||||
source = "git::https://github.com/poseidon/typhoon//aws/container-linux/kubernetes/workers?ref=v1.14.3"
|
||||
|
||||
# AWS
|
||||
vpc_id = module.aws-tempest.vpc_id
|
||||
|
|
Loading…
Reference in New Issue