Advertisement

Terraform 安装

阅读量:

安装

MacOs安装指南

复制代码
    //通过brew安装hashicorp tap
    brew tap hashicorp/tap
    //通过brew安装terrafor
     brew install hashicorp/tap/terraform
    
    
      
      
      
      
    

Linux安装

Ubuntu与Debian系统的安装流程

复制代码
    //安装gnupg, software-properties-common和curl
    sudo apt-get update && sudo apt-get install -y gnupg software-properties-common curl
    //添加GPG Key
    curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
    //添加官方hashicorp linux repository
    sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs

全部评论 (0)

还没有任何评论哟~