Skip to content

Commit

Permalink
blog: add blog for add variable TF cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
mildronize committed Dec 1, 2023
1 parent aee4a45 commit 7baa003
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
---
title: สร้างตัวแปร Terraform Cloud ผ่าน JavaScript และ Axios
uuid: jv881wo
tags:
- JavaScript
- Terraform Cloud
- Axios
---

การใช้งาน Terraform Cloud จะต้องใช้ User API Token เพื่อทำการจัดการ Workspace ของคุณ โดยคุณสามารถสร้าง Token ได้ที่ลิงก์ https://app.terraform.io/app/settings/tokens นี้

หลังจากที่ได้ User API Token แล้ว คุณต้องมี Workspace ID เพื่อทำการเข้าถึง Workspace ที่ต้องการ โปรดทราบว่า Workspace ที่ใช้ในตัวอย่างนี้

![](get-workspace-id.png)

เพื่อสร้างตัวแปรใหม่ใน Workspace โดยใช้ Workspace API ตามลิงก์ https://developer.hashicorp.com/terraform/cloud-docs/api-docs/workspace-variables คุณสามารถทำได้โดยใช้โค้ดต่อไปนี้ที่เขียนด้วย JavaScript และใช้ Axios เพื่อส่งคำขอ:


```typescript
import axios from 'axios';

const workspaceId = 'ws-1z8PbLVuFdcqqqFR';
const token = 'MY-TOKEN';
const data = JSON.stringify({
"data": {
"type": "vars",
"attributes": {
"key": "some_key",
"value": "some_value",
"description": "some description",
"category": "terraform",
"hcl": false,
"sensitive": false
}
}
});

const config = {
method: 'post',
url: `https://app.terraform.io/api/v2/workspaces/${workspaceId}/vars`,
headers: {
'Content-Type': 'application/vnd.api+json',
'Authorization': 'Bearer ' + token,
},
data : data
};

try {
const response = await axios(config);
console.log(JSON.stringify(response.data));
} catch (error) {
console.log(error);
}
```

อย่าลืมแทนค่า `workspaceId` และ `token` ด้วยค่าจริงที่คุณได้รับจาก Terraform Cloud นะครับ

นอกจากนี้ยังสามารถปรับแต่งค่าต่าง ๆ ในส่วนของตัวแปรที่ต้องการสร้างตามความเหมาะสมของโปรเจคของคุณได้

สุดท้าย, หลังจากการส่งคำขอสร้างตัวแปรเสร็จสิ้น, คุณจะได้รับข้อมูลการตอบกลับที่แสดงถึงสถานะการทำงานของคำขอ

หวังว่าบทความนี้จะมีประโยชน์สำหรับการจัดการและใช้งาน Terraform Cloud ของคุณครับ!
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7baa003

Please sign in to comment.