Initial commit: Terraform configurations for multiple cloud providers

This commit is contained in:
Ben User
2026-02-01 06:36:02 +00:00
commit 70f160b396
58 changed files with 1813 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
# 火山引擎 Terraform 变量定义
variable "region" {
description = "目标区域"
type = string
default = "cn-beijing"
}
variable "access_key_id" {
description = "访问密钥ID"
type = string
}
variable "secret_access_key" {
description = "秘密访问密钥"
type = string
sensitive = true
}
variable "vpc_name" {
description = "VPC名称"
type = string
default = "terraform-vpc"
}
variable "cidr_block" {
description = "VPC CIDR块"
type = string
default = "172.16.0.0/16"
}