恢复 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
+7
View File
@@ -0,0 +1,7 @@
resource "oci_limits_quota" "free_tier_quota" {
compartment_id = var.compartment_ocid
description = "Enforce Always Free tier compliance for compute and storage."
name = "always-free-tier-quota"
statements = ["set compute-core quota standard-a1-core-count to 4 in tenancy", "set compute-memory quota standard-a1-memory-count to 24 in tenancy", "set block-storage quota volume-count to 10 in tenancy", "set block-storage quota total-storage-gb to 200 in tenancy"]
}