gpt4 book ai didi

amazon-web-services - Terraform 变量默认值和嵌套值的描述

转载 作者:行者123 更新时间:2023-12-03 02:21:35 24 4
gpt4 key购买 nike

是否有选项可以为 terraform 中的嵌套变量设置默认值和描述?

示例:

variable "example_page_rule"{
type = list(object({
level = string,
tags = string,
prefix = string
}))
}

这个可以实现吗?

variable "example_page_rule"{
type = list(object({
level = string, default = "1", description = "debug level 0-7"
tags = string, default = {}, description = "tags"
prefix = string, default = "abc", description = "some description"
}))
}

最佳答案

您可以使用新的实验性功能为 map 设置默认值defaults TF 的。它的语法不同,但结果相同。但没有描述。

如果您不想使用体验式功能,则必须开发自定义代码来处理默认值,就像当今执行此操作的任何其他 TF 代码一样。其中一个例子是 here .

关于amazon-web-services - Terraform 变量默认值和嵌套值的描述,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68644722/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com