.copywrite.hcl .gitignore .go-version .tfdev BUGPROCESS.md BUILDING.md CHANGELOG.md CODEOWNERS Dockerfile LICENSE Makefile README.md catalog-info.yaml checkpoint.go codecov.yml commands.go experiments.go go.mod go.sum help.go main.go ...
data"alicloud_alikafka_sasl_acls""sasl_acls_ds"{ instance_id ="<Kafka实例ID>"username ="<SASL用户名称>"# ACL的资源类型,请参见上文背景信息中acl_resource_type参数解释。acl_resource_type ="<ACL资源类型>"acl_resource_name ="<ACL资源名称>"output_file ="saslAcls.txt"} ...
terraform output指令用于从状态文件中提取输出变量的值。 标准语法:terraform output [options] [NAME] options用来填写output的flags NAME用来指定要输出的变量的值,默认为根模块的所有输出 配置output.tf文件,设置要输出的内容,案例中设置查看服务器的id和availability_zone两个参数 // output.tf output "cvm_az" {...
name_regex ="sample_oss_bucket"}output"first_oss_bucket_name"{ value ="${data.alicloud_oss_buckets.oss_buckets_ds.buckets.0.name}"} Argument Reference The following arguments are supported: name_regex- (Optional) A regex string to filter results by bucket name. output_file- (Optional) F...
Terraform是一个IT基础架构自动化编排工具,它的口号是“Write, Plan, and Create Infrastructure as Code”, 是一个“基础设施即代码”工具,类似于AWS CloudFormation,允许您创建、更新和版本控制的AWS基础设施。 Terraform基于AWS Go SDK进行构建,采用HashiCorp配置语言(HCL)对资源进行编排,具体的说就是可以用代码来...
// Generate Terraform configuration as stringconstresult=tfg.generate();console.log(result.tf);console.log(result.tfvars);// Write Terraform configuration to a filetfg.write({dir:'outputDir',format:true}); Example importTerraformGenerator,{Map,map}from'terraform-generator';importpathfrom'path';/...
在其他部分,使用 azurerm_resource_group.myterraformgroup.name 引用资源组。在Azure Cloud Shell 中使用 Terraform 部署 Azure 资源组接下来,完成在 Azure Cloud Shell 中使用 Terraform 部署资源组的步骤。 资源组部署完成后,可以选择按照步骤部署 Linux 虚拟机。
创建名为 output.tf 的文件来指定 Terraform 会显示哪些值,然后插入以下代码: Terraform 复制 output "vmss_public_ip_fqdn" { value = azurerm_public_ip.vmss.fqdn } output "jumpbox_public_ip_fqdn" { value = azurerm_public_ip.jumpbox.fqdn } output "jumpbox_public_ip" { value = azurerm_pu...
它的目标是 "Write, Plan, and create Infrastructure as Code", 基础架构即代码。Terraform 几乎可以支持所有市面上能见到的云服务。具体的说就是可以用代码来管理维护 IT 资源,把之前需要手动操作的一部分任务通过程序来自动化的完成,这样的做的结果非常明显:高效、不易出错。
// 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