output "example_output" { value = "example value" } 在另一个模块中,可以通过使用模块调用的方式引用输出变量。假设我们将另一个模块命名为"consumer",那么可以在"consumer"模块的配置文件中通过以下方式引用输出变量: 代码语言:txt 复制 module "example_module" { source = "./example" example_output = mo...
output.csv output.jsonp 其中,output.terraform用于定义Terraform模块的输出格式;output.json、output.yaml、output.csv和output.jsonp用于定义其他输出格式。 例如,以下模块定义了输出为JSON格式: output"example"{value="example value"} 在上面的例子中,output.example指定了输出为example名称的值。 如何使用Terraform模...
通过 Terraform 模块输出,用户可以获取到 Terraform 模块执行后的变量值、输出文件、输出变量等,这些结果对用户来说非常重要。 Terraform Module Output 可以让用户在 Terraform 模块执行完成后快速查看输出结果,以便对结果进行分析和处理。此外,Terraform Module Output 也可以用于将输出结果保存到文件中,以便后续的分析和使...
// Specifies the depth of modules to show in the output $ terraform graph -module-depth=-1 -type=plan输出依赖图内容的类型,可以指定为plan,plan-destroy,apply,validate,input,refresh 代码语言:txt 复制 // Sets type of graph to output $ terraform graph -type=plan 可以看到不同类型的输出内容有所...
Terraform 中的模块是以组的形式管理不同的 Terraform 配置。模块用于在 Terraform 中创建可重用组件,以及用于基本代码组织。每一个 module 都可以定义自己的 input 与 output,方便代码进行模块化组织。 在例子当中我们将配置文件分成了两个 module 进行处理:module qingcloud 负责在qingcloud 创建所需要的基础设施资源。
-module-depth=n设置输出中模块的深度,默认情况下这是-1,显示所有 // Specifies the depth of modules to show in the output $ terraform graph -module-depth=-1 -type=plan输出依赖图内容的类型,可以指定为plan,plan-destroy,apply,validate,input,refresh ...
任何一个Terraform项目,都是一个目录,所以也都是一个模块,我们把它称为根模块(Root Module)。而在它目录下的其它模块,都是子模块。我们可以调用多个模块,也可以多次调用同一个子模块。在子模块中,也可以调用其它模块。模块这些特点,与函数类似,可以接受传入参数,经过声明式的调用后,输出结果变量(output)。
Terraform module to create Amazon Elastic Kubernetes (EKS) resources 🇺🇦 - terraform-aws-eks/outputs.tf at master · terraform-aws-modules/terraform-aws-eks
-module-depth=n设置输出中模块的深度,默认情况下这是-1,显示所有 // Specifies the depth of modules to show in the output $ terraform graph -module-depth=-1 1. -type=plan输出依赖图内容的类型,可以指定为plan,plan-destroy,apply,validate,input,refresh ...
output Show output values from your root module providers Show the providers required for this configuration refresh Update the state to match remote systems show Show the current state or a saved plan state Advanced state management taint Mark a resource instance as not fully functional test ...