“Terraform”的版本间的差异
跳到导航
跳到搜索
(→aliyun) |
|||
第27行: | 第27行: | ||
[https://blog.csdn.net/daiqinge/article/details/103798557?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-1.control\&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-1.control terraform的安装和应用 ] | [https://blog.csdn.net/daiqinge/article/details/103798557?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-1.control\&depth_1-utm_source=distribute.pc_relevant.none-task-blog-2%7Edefault%7EBlogCommendFromMachineLearnPai2%7Edefault-1.control terraform的安装和应用 ] | ||
− | =aliyun= | + | =usage= |
+ | = usage on aliyun= | ||
+ | 以aliyun作为例子 | ||
+ | |||
+ | <pre> | ||
+ | #把相关密码写入 不是写在文本 安全一点吧 | ||
+ | export ALICLOUD_ACCESS_KEY="LTAIUrZCw3********" | ||
+ | export ALICLOUD_SECRET_KEY="zfwwWAMWIAiooj14GQ2*************" | ||
+ | export ALICLOUD_REGION="cn-guangzhou" | ||
+ | </pre> | ||
+ | |||
+ | |||
+ | |||
+ | <pre> | ||
+ | |||
+ | </pre> | ||
+ | |||
+ | |||
+ | <pre> | ||
+ | |||
+ | </pre> | ||
+ | |||
[https://www.cnblogs.com/rongfengliang/p/7768142.html terraform 阿里云基本使用 ] | [https://www.cnblogs.com/rongfengliang/p/7768142.html terraform 阿里云基本使用 ] |
2021年5月30日 (日) 02:05的版本
ins
wget -c https://releases.hashicorp.com/terraform/0.15.4/terraform_0.15.4_linux_amd64.zip unzip terraform_0.15.4_linux_amd64.zip #sudo mv terraform /usr/bin/ mkdir /home/evan/data/apps/terraform && mv terraform /home/evan/data/apps/terraform/ echo 'export PATH=/home/evan/data/apps/terraform:$PATH' >> /etc/profile echo 'export PATH=/home/evan/data/apps/:$PATH' >> /etc/profile #这个不行 少了一个目录 找不到了 写在你的home ~/.profile 也是可以的 #if APT Packages for Debian and Ubuntu curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add - 216 sudo apt-add-repository "deb [arch=$(dpkg --print-architecture)] https://apt.releases.hashicorp.com $(lsb_release -cs) main" 218 apt update 219 sudo apt install terraform
terraform的安装和应用
usage
usage on aliyun
以aliyun作为例子
#把相关密码写入 不是写在文本 安全一点吧 export ALICLOUD_ACCESS_KEY="LTAIUrZCw3********" export ALICLOUD_SECRET_KEY="zfwwWAMWIAiooj14GQ2*************" export ALICLOUD_REGION="cn-guangzhou"