恢复 OCI Terraform 与站点网络 IaC

This commit is contained in:
2026-09-17 13:22:49 +00:00
parent a08c8a7303
commit 71eea7d8fc
41 changed files with 1786 additions and 10 deletions
+18
View File
@@ -0,0 +1,18 @@
terraform {
required_version = ">= 1.15.8, < 2.0.0"
required_providers {
oci = {
source = "oracle/oci"
version = "= 9.1.0"
}
}
# 已停用旧执行流程,当前根模块直接管理既有对象;不迁移本地恢复副本。
backend "oci" {
bucket = "oci-k8s-free-tier-tfstate"
namespace = "axckv9ylwqxr"
key = "terraform.tfstate"
region = "ap-osaka-1"
auth = "APIKey"
config_file_profile = "DEFAULT"
}
}