安装 Terraform for Tencent 使用

第一步 :下载安装包

前往 Terraform 官网,使用命令行直接安装 Terraform 或下载二进制安装文件。

解压并配置全局路径

Linux/MAC:export PATH=$PATH:${可执行文件所在目录}   

例如:export PATH=$PATH:$/usr/bin/terraform

Windows:可执行文件所在目录添加到系统环境变量 PATH 中

文章以linux 为例:

wget -O- https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
sudo apt update && sudo apt install terraform

[root@mac-vm-temp ~]# terraform --version

Terraform v1.9.3

on linux_amd64

表示安装成功了;

第二步:安装Terraform Provider For TencentCloud

Requirements

  • Terraform 0.13.x
  • Go 1.18.x (to build the provider plugin)

因为依赖go环境执行,所以需要先安装go;执行以下命令,下载go安装包并解压至【/usr/local/go】目录中

wget  https://dl.google.com/go/go1.21.4.linux-amd64.tar.gzsudo tar -C /usr/local -xzf go1.21.4.linux-amd64.tar.gz

使用go,还需要设置环境变量,通过编辑【/etc/profile】文件;

vim /etc/profile追加一行 :export PATH=$PATH:/usr/local/go/bin

按下Esc,然后输入【:wq】保存并退出。

使用 source 命令重新加载 【/etc/profile】文件,以便使修改后的环境变量立即生效。

source /etc/profile

测试安装是否成功

 选个测试目录,编辑个go文件 

vim hello.gopackage mainimport "fmt"func main(){fmt.Println("Hello, world!")
}

保存并退出编辑器后,就可以使用go命令编译刚才的程序了。

go build hello.go

生成可执行文件 hello;

运行程序

./hello

输出 Hello, world!  表示安装成功。

 安装 Terraform Provider For TencentCloud

$ mkdir -p $GOPATH/src/github.com/tencentcloudstack
$ cd $GOPATH/src/github.com/tencentcloudstack
$ git clone https://github.com/tencentcloudstack/terraform-provider-tencentcloud.git
$ cd terraform-provider-tencentcloud
$ go build .

备注:go build .  时间会有点长,执行时不会有任何输出,预计15-20min左右。

参考文档:https://github.com/tencentcloudstack/terraform-provider-tencentcloud   

认证和鉴权

凭证获取

在首次使用 Terraform 之前,请前往 云 API 密钥页面 申请安全凭证 SecretId 和 SecretKey。若已有可使用的安全凭证,则跳过该步骤。

1. 登录 访问管理控制台,在左侧导航栏,选择访问密钥 > API 密钥管理

2. 在 API 密钥管理页面,单击新建密钥,即可以创建一对 SecretId/SecretKey。

静态凭证鉴权

在用户目录下创建 provider.tf 文件,输入如下内容:

my-secret-id 及 my-secret-key 请替换为 获取凭证 中的 SecretId 和 SecretKey。

provider "tencentcloud" {secret_id = "my-secret-id"secret_key = "my-secret-key"
}

环境变量鉴权

请将如下信息添加至环境变量配置:

YOUR_SECRET_ID 及 YOUR_SECRET_KEY 请替换为 获取凭证 中的 SecretId 和 SecretKey。

export TENCENTCLOUD_SECRET_ID=YOUR_SECRET_ID
export TENCENTCLOUD_SECRET_KEY=YOUR_SECRET_KEY

使用 Terraform 创建腾讯云 VPC

1. 创建 provider.tf 文件,指定 provider 配置信息。文件内容如下:

terraform {required_providers {tencentcloud = {source = "tencentcloudstack/tencentcloud"# 通过version指定版本# version = ">=1.60.18"}}
}provider "tencentcloud" {region = "ap-guangzhou"# secret_id = "my-secret-id"# secret_key = "my-secret-key"
}

2. 创建 main.tf 文件,配置腾讯云 Provider 并创建私有网络 VPC。文件内容如下:

resource "tencentcloud_vpc" "foo" {name         = "ci-temp-test-updated"cidr_block   = "10.0.0.0/16"dns_servers  = ["119.29.29.29", "8.8.8.8"]is_multicast = falsetags = {"test" = "test"}
}

3. 执行以下命令,初始化工作目录并下载插件。

terraform init

如果返回遇到下载失败问题报错如下:

Initializing the backend...

Initializing provider plugins...

- Finding latest version of tencentcloudstack/tencentcloud...

│ Error: Failed to install provider

│ 

│ Error while installing tencentcloudstack/tencentcloud v1.78.5: could not query provider registry forregistry.terraform.io/tencentcloudstack/tencentcloud: failed to retrieve authentication checksums for provider: the request failed after 2 attempts, please try again later: Get

│ "https://github.com/tencentcloudstack/terraform-provider-tencentcloud/releases/download/v1.78.5/terraform-provider-tencentcloud_1.78.5_SHA256SUMS": context deadline exceeded

问题定位

Terraform 的默认镜像源 registry.terraform.io 部署在国外,在国内拉取镜像时可能存在网络问题导致拉取速度慢、甚至无法成功拉取。为解决此问题,您可以使用腾讯云提供的 镜像源。

操作步骤

创建 Terraform CLI 配置文件

按需创建 .terraformrc 或 terraform.rc 配置文件,您可以将其与其他配置文件放在一个文件夹内,位置取决于主机操作系统:

在 Windows 上,该文件必须命名 terraform.rc,并放置在相关用户的 %APPDATA% 目录中。该目录的物理位置取决于您的 Windows 版本和系统配置;可以在 PowerShell 中使用 $env:APPDATA 查找其在系统上的位置。

在所有其他系统上,文件必须命名 .terraformrc,并直接放在相关用户的 home 目录中。Terraform CLI 配置文件的位置也可以使用 TF_CLI_CONFIG_FILE 环境变量来指定。任何此类文件都应遵循命名模式 *.tfrc,详情见 Terraform 官网指引。

以 LINUX 为例,创建 .terraformrc 文件在用户的 home 目录下,内容如下:

provider_installation {network_mirror {url = "https://mirrors.tencent.com/terraform/"// 限制只有腾讯云相关Provider, 从url中指定镜像源下载include = ["registry.terraform.io/tencentcloudstack/*"]   }direct {// 声明除了腾讯云相关Provider, 其它Provider依然从默认官方源下载exclude = ["registry.terraform.io/tencentcloudstack/*"]}
}

创建完成保存后,需要再声明下:

export TF_CLI_CONFIG_FILE=.terraformrc

再执行  terraform init  就正常了。

init 加速参考文档:云资源自动化 for Terraform Init 加速-常见问题-文档中心-腾讯云

返回信息如下所示:

Initializing the backend...

Initializing provider plugins...

- Finding latest version of tencentcloudstack/tencentcloud...

- Installing tencentcloudstack/tencentcloud v1.60.18...

- Installed tencentcloudstack/tencentcloud v1.60.18 (signed by a HashiCorp partner, key ID 84F69E1C1BECF459)

Partner and community providers are signed by their developers.

If you'd like to know more about provider signing, you can read about it here:

https://www.terraform.io/docs/cli/plugins/signing.html

Terraform has created a lock file .terraform.lock.hcl to record the provider

selections it made above. Include this file in your version control repository

so that Terraform can guarantee to make the same selections by default when

you run "terraform init" in the future.

Terraform has been successfully initialized!

You may now begin working with Terraform. Try running "terraform plan" to see

any changes that are required for your infrastructure. All Terraform commands

should now work.

If you ever set or change modules or backend configuration for Terraform,

rerun this command to reinitialize your working directory. If you forget, other

commands will detect it and remind you to do so if necessary.

4. 执行以下命令,升级 Provider 版本。

terraform init -upgrade

5. 执行以下命令,查看执行计划,显示将要创建的资源详情。

 

terraform plan

返回信息如下所示:

terraform_workspace terraform plan

Terraform used the selected providers to generate the following execution plan. Resource actions are

indicated with the following symbols:

+ create

Terraform will perform the following actions:

# tencentcloud_vpc.foo will be created

+ resource "tencentcloud_vpc" "foo" {

+ cidr_block  = "10.0.0.0/16"

+ create_time  = (known after apply)

+ default_route_table_id = (known after apply)

+ dns_servers  = [

+ "119.29.29.29",

+ "8.8.8.8",

]

+ id  = (known after apply)

+ is_default  = (known after apply)

+ is_multicast  = false

+ name  = "ci-temp-test-updated"

+ tags  = {

+ "test" = "test"

}

}

Plan: 1 to add, 0 to change, 0 to destroy.

─────────────────────────────────────────────────────────────────────────────────────────────────────────────

Note: You didn't use the -out option to save this plan, so Terraform can't guarantee to take exactly these

actions if you run "terraform apply" now.

6. 执行以下命令,创建资源。

terraform apply

根据提示输入 yes 创建资源,返回信息如下所示:

➜ terraform_workspace terraform apply

Terraform used the selected providers to generate the following execution plan. Resource actions are

indicated with the following symbols:

+ create

Terraform will perform the following actions:

# tencentcloud_vpc.foo will be created

+ resource "tencentcloud_vpc" "foo" {

+ cidr_block  = "10.0.0.0/16"

+ create_time  = (known after apply)

+ default_route_table_id = (known after apply)

+ dns_servers  = [

+ "119.29.29.29",

+ "8.8.8.8",

]

+ id  = (known after apply)

+ is_default  = (known after apply)

+ is_multicast  = false

+ name  = "ci-temp-test-updated"

+ tags  = {

+ "test" = "test"

}

}

Plan: 1 to add, 0 to change, 0 to destroy.

Do you want to perform these actions?

Terraform will perform the actions described above.

Only 'yes' will be accepted to approve.

Enter a value: yes

tencentcloud_vpc.foo: Creating...

tencentcloud_vpc.foo: Still creating... [10s elapsed]

tencentcloud_vpc.foo: Creation complete after 13s [id=vpc-07mx4yfd]

Apply complete! Resources: 1 added, 0 changed, 0 destroyed.

执行完毕后,您可以在腾讯云控制台查看创建的资源。

7. (可选)更新资源。

若您将资源配置信息修改为如下所示内容:

resource "tencentcloud_vpc" "foo" {

name  = "ci-temp-test-updated2"

cidr_block  = "10.0.0.0/16"

dns_servers  = ["119.29.29.29", "8.8.8.8"]

is_multicast = false

tags = {

"test" = "test"

}

}

请执行 terraform plan 命令更新计划。返回信息如下所示:

➜ terraform_workspace terraform plan 

tencentcloud_vpc.foo: Refreshing state... [id=vpc-jhmdf9q9]

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:

~ update in-place

Terraform will perform the following actions:

# tencentcloud_vpc.foo will be updated in-place

~ resource "tencentcloud_vpc" "foo" {

id  = "vpc-jhmdf9q9"

~ name  = "ci-temp-test-updated" -> "ci-temp-test-updated2"

tags  = {

"test" = "test"

}

# (6 unchanged attributes hidden)

}

Plan: 0 to add, 1 to change, 0 to destroy.

───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

Note: You didn't use the -out option to save this plan, so Terraform can't guarantee to take exactly these actions if you run "terraform apply"

now.

执行terraform apply命令,应用更新的数据创建资源。返回信息如下:

➜ terraform_workspace terraform apply

tencentcloud_vpc.foo: Refreshing state... [id=vpc-jhmdf9q9]

Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:

~ update in-place

Terraform will perform the following actions:

# tencentcloud_vpc.foo will be updated in-place

~ resource "tencentcloud_vpc" "foo" {

id  = "vpc-jhmdf9q9"

~ name  = "ci-temp-test-updated" -> "ci-temp-test-updated2"

tags  = {

"test" = "test"

}

# (6 unchanged attributes hidden)

}

Plan: 0 to add, 1 to change, 0 to destroy.

Do you want to perform these actions?

Terraform will perform the actions described above.

Only 'yes' will be accepted to approve.

Enter a value: yes

tencentcloud_vpc.foo: Modifying... [id=vpc-jhmdf9q9]

tencentcloud_vpc.foo: Modifications complete after 1s [id=vpc-jhmdf9q9]

Apply complete! Resources: 0 added, 1 changed, 0 destroyed.

8. 您可根据实际需求,执行以下命令销毁资源。

terraform destroy

返回信息如下所示:

➜ terraform_workspace terraform destroy

tencentcloud_vpc.foo: Refreshing state... [id=vpc-07mx4yfd]

Terraform used the selected providers to generate the following execution plan. Resource actions are

indicated with the following symbols:

- destroy

Terraform will perform the following actions:

# tencentcloud_vpc.foo will be destroyed

- resource "tencentcloud_vpc" "foo" {

- cidr_block  = "10.0.0.0/16" -> null

- create_time  = "2021-12-15 16:20:32" -> null

- default_route_table_id = "rtb-4m1nmo0e" -> null

- dns_servers  = [

- "119.29.29.29",

- "8.8.8.8",

] -> null

- id  = "vpc-07mx4yfd" -> null

- is_default  = false -> null

- is_multicast  = false -> null

- name  = "ci-temp-test-updated" -> null

- tags  = {

- "test" = "test"

} -> null

}

Plan: 0 to add, 0 to change, 1 to destroy.

Do you really want to destroy all resources?

Terraform will destroy all your managed infrastructure, as shown above.

There is no undo. Only 'yes' will be accepted to confirm.

Enter a value: yes

tencentcloud_vpc.foo: Destroying... [id=vpc-07mx4yfd]

tencentcloud_vpc.foo: Destruction complete after 7s

Destroy complete! Resources: 1 destroyed.

参考文档:云资源自动化 for Terraform CLI 方式-快速开始-文档中心-腾讯云

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/387983.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

vue2学习 -- 核心语法

文章目录 前置简介1. 模板语法2. 数据2.1 数据绑定2.2 el与data的两种写法2.3 MVVM模型2.4 Object.defineProperty2.5 Vue中的数据代理 3. 事件3.1 事件处理3.2 事件修饰符3.3 键盘事件 4. 计算属性5. 监视(侦听)属性5.1 书写形式5.2 深度监视5.3 简写形式5.4 计算属性和监听属…

Go语言生成excel、将excel保存到本地、将多个excel表格压缩为压缩包、在压缩文件上传OSS删除本地excel文件和压缩包

最近在公司了个需求,主要涉及到文件导出,需要根据特定表格文件生成excel文件导出,同时对导出的excel临时保存本地,生成压缩包,将压缩包上传至OSS(Object Storage Service)后删除本地临时文件。下…

Go+Redis零基础到用户管理系统API实战_20240730 课程笔记

概述 如果您没有Golang的基础,应该学习如下前置课程。 Golang零基础入门Golang面向对象编程Go Web 基础Go语言开发REST API接口_20240728Go语言操作MySQL开发用户管理系统API教程_20240729Redis零基础快速入门_20231227 基础不好的同学每节课的代码最好配合视频进…

AI绘画模型之:VAE、SD 与 SD-XL

重磅推荐专栏: 《大模型AIGC》 《课程大纲》 《知识星球》 本专栏致力于探索和讨论当今最前沿的技术趋势和应用领域,包括但不限于ChatGPT和Stable Diffusion等。我们将深入研究大型模型的开发和应用,以及与之相关的人工智能生成内容(AIGC)技术。通过深入的技术解析和实践经…

Linux常用工具

文章目录 tar打包命令详解unzip命令:解压zip文件vim操作详解netstat详解df命令详解ps命令详解find命令详解 tar打包命令详解 tar命令做打包操作 当 tar 命令用于打包操作时,该命令的基本格式为: tar [选项] 源文件或目录此命令常用的选项及…

19082 中位特征值

这个问题可以通过深度优先搜索(DFS)和优先队列来解决。我们首先使用DFS来计算每个节点的特征值,然后我们将所有节点的特征值放入一个优先队列中,然后我们从优先队列中取出中间的元素,这就是我们要找的中位数。 以下是…

如何选择合适的自动化测试工具!

选择合适的自动化测试工具是一个涉及多方面因素的决策过程。以下是一些关键步骤和考虑因素,帮助您做出明智的选择: 一、明确测试需求和目标 测试范围:确定需要自动化的测试类型(如单元测试、集成测试、UI测试等)和测试…

React-Native 宝藏库大揭秘:精选开源项目与实战代码解析

1. 引言 1.1 React-Native 简介 React-Native 是由 Facebook 开发的一个开源框架,它允许开发者使用 JavaScript 和 React 的编程模型来构建跨平台的移动应用。React-Native 的核心理念是“Learn Once, Write Anywhere”,即学习一次 React 的编程模型&am…

社区养老服务小程序的设计

管理员账户功能包括:系统首页,个人中心,用户管理,服务人员管理,服务产品管理,服务预约管理,服务状态管理,服务退订管理,活动管理,视频管理 微信端账号功能包…

基于cubeMX的STM32的RTC实时时钟实现

1、在仪器仪表的项目开发中,时常需要设备显示当前的日期和时间,这时,可以使用STM32自带的RTC实时时钟模块来实现此功能。这里我们使用STM32F103RCT6单片机芯片为例。 2、cubeMX的设置 (1)RTC设置 (2&…

民大食堂用餐小程序的设计

管理员账户功能包括:系统首页,个人中心,用户管理,商家管理,档口号管理,商家餐品管理,餐品种类管理,购物车管理,订单信息管理 微信端账号功能包括:系统首页&a…

yolov10来了!用yolov10训练自己的数据集(原理、训练、部署、应用)

一、引言 YOLOv9还没热乎呢,YOLOv10就出来了,太卷了!太快了! 自今年2月YOLOv9发布之后, YOLO(You Only Look Once) 系列的接力棒传到了清华大学研究人员的手上。YOLOv10推出的消息引发了AI界的…

使用 Postman 进行 Trello API 自动化测试的完整指南

文章目录 前言一、自动化测试是什么?二、比较自动化测试与手工测试1. 自动化测试2. 手工测试 三、环境搭建1.创建Collection2.创建环境变量3.添加API请求 四、设计测试用例1. API简单调用2. 获取所有emoji3. 创建一个新看板:4. 获得创建的看板信息5. 在看…

安装nodejs服务器

Java项目可以运行在tomcat服务器,开始完成前后端完全分离。前端有自己独立的工程。我们需要把前端独立的工程运行起来。 运行在nodejs服务器下。 验证是否安装成功:敲cmd--输入node --version 1.安装npm java项目需要依赖jar,安装maven。前端项目也需要依…

Vitis HLS 完美嵌套循环通过 m_axi 接口读取DDR 的迭代次数细粒度控制实验 — 问题描述

1 自媒体账号 目前运营的自媒体账号如下: 哔哩哔哩 【雪天鱼】: 雪天鱼个人主页-bilibili.comCSDN 【雪天鱼】: 雪天鱼-CSDN博客 QQ 学习交流群 FPGA科研硕博交流群 910055563 (进群有一定的学历门槛,长期未发言会被请出群聊,主要交流FPG…

免费!OpenAI发布最新模型GPT-4o mini,取代GPT-3.5,GPT-3.5退出历史舞台?

有个小伙伴问我,GPT-4O mini是什么,当时我还一脸懵逼,便做了一波猜测: 我猜测哈,这个可能是ChatGPT4o的前提下,只支持文本功能的版本,速度更快 结果,大错特错。 让我们一起看看Open…

【简单介绍Gitea】

🎥博主:程序员不想YY啊 💫CSDN优质创作者,CSDN实力新星,CSDN博客专家 🤗点赞🎈收藏⭐再看💫养成习惯 ✨希望本文对您有所裨益,如有不足之处,欢迎在评论区提出…

吴恩达老师机器学习-ex4

梯度检测没有实现。有借鉴网上的部分 导入相关库,读取数据 因为这次的数据是mat文件,需要使用scipy库中的loadmat进行读取数据。 通过对数据类型的分析,发现是字典类型,查看该字典的键,可以发现又X,y等关…

类和对象【下】

一、类的默认成员函数 默认成员函数从名字就告诉我们何为默认成员函数,即:用户没有实现,编译器默认自动实现的函数。 这时你不禁一喜,还有这好事,编译器给我打工,那么,我们今天都来了解一下都有…

漏洞复现-路由器TOTOLINK-A6000R-RCE

本文来自无问社区,更多漏洞信息可前往查看http://wwlib.cn/index.php/artread/artid/14996.html 0x01 产品简介 TOTOLINK A6000R是一款性能卓越的无线路由器,采用先进的技术和设计,为用户提供出色的网络体验。其支持最新的Wi-Fi标准&#x…