Run terraform with Docker CLI

1bash-3.2$ docker run -i -t --rm hashicorp/terraform:latest 2Usage: terraform [--version] [--help] <command> [args] 3 4The available commands for execution are listed below. 5The most common, useful commands are shown first, followed by 6less common or more advanced commands. If you're just getting 7started with Terraform, stick with the common commands. For the 8other commands, please read the help and docs before usage. 9 10Common commands: 11 apply Builds or changes infrastructure 12 destroy Destroy Terraform-managed infrastructure 13 fmt Rewrites config files to canonical format 14 get Download and install modules for the configuration 15 graph Create a visual graph of Terraform resources 16 import Import existing infrastructure into Terraform 17 init Initializes Terraform configuration from a module 18 output Read an output from a state file 19 plan Generate and show an execution plan 20 push Upload this Terraform module to Atlas to run 21 refresh Update local state file against real resources 22 remote Configure remote state storage 23 show Inspect Terraform state or plan 24 taint Manually mark a resource for recreation 25 untaint Manually unmark a resource as tainted 26 validate Validates the Terraform files 27 version Prints the Terraform version 28 29All other commands: 30 state Advanced state management 31bash-3.2$ docker run -i -t --rm hashicorp/terraform:latest version 32Terraform v0.7.6
点赞
收藏

评论区

加载中...

相关推荐

MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1

文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s

Oracle 分组与拼接字符串同时使用

SELECTT.,ROWNUMIDFROM(SELECTT.EMPLID,T.NAME,T.BU,T.REALDEPART,T.FORMATDATE,SUM(T.S0)S0,MAX(UPDATETIME)CREATETIME,LISTAGG(TOCHAR(

MySQL部分从库上面因为大量的临时表tmp_table造成慢查询

背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_

手写Java HashMap源码

HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22

java将前端的json数组字符串转换为列表

记录下在前端通过ajax提交了一个json数组的字符串,在后端如何转换为列表。前端数据转化与请求varcontracts{id:'1',name:'yanggb合同1'},{id:'2',name:'yanggb合同2'},{id:'3',name:'yang

Terraform Module 编写指南

Module是一个Terraform模板,是对多个子节点,子资源,子架构模板的组合和抽象。利用Module在降低模板编写和维护复杂度的同时,使得模板结构更加简洁清楚。为什么要使用Module,详见文章Module让Terraform使用更简单(https://www.oschina.net/action/GoToLink?urlhttp

Run terraform with Docker CLI - HelloWorld