Skip to content

Instantly share code, notes, and snippets.

@gowatana
Created June 17, 2025 13:35
Show Gist options
  • Select an option

  • Save gowatana/c9467e6d252947a863e52272d7bb6fd2 to your computer and use it in GitHub Desktop.

Select an option

Save gowatana/c9467e6d252947a863e52272d7bb6fd2 to your computer and use it in GitHub Desktop.
module "overlay1" {
source = "./modules/overlay"
cluster_name = "lab-nxce-10"
vpc_name = "vpc-21"
overlay_subnet_name = "overlay-21"
overlay_gateway_ip = "10.0.21.1"
overlay_network_address = "10.0.21.0"
overlay_prefix_length = 24
overlay_pool_start_ip = "10.0.21.10"
overlay_pool_end_ip = "10.0.21.19"
vm_name_prefix = "vm21"
vm_count = 1
os_image_name = "OL9U5_x86_64-kvm-b253.qcow2"
cloud_init_b64 = filebase64("cloud-init_ol-web.yml")
}
output "overlay1_vm_ip" {
value = module.overlay1.vms_name_ip_map
}
@gowatana

Copy link
Copy Markdown
Author

下記の投稿むけ。

Flow Virtual Networking の Routed VPC を構成してみる。Part-02:Routed VPC 環境の作成(Terraform)
https://blog.ntnx.jp/entry/2025/06/17/234758

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment