Files
terraform/oracle/modules/vcn/main.tf

13 lines
389 B
HCL
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Oracle VCN 模块示例
# 这是一个示例,实际使用时需要替换为真实的 OCI 资源
resource "null_resource" "vcn_example" {
triggers = {
compartment_id = var.compartment_id
vcn_name = var.vcn_name
}
provisioner "local-exec" {
command = "echo '创建 VCN: ${var.vcn_name}CIDR: ${var.cidr_block},在 Compartment: ${var.compartment_id}'"
}
}