Skip to content

Instantly share code, notes, and snippets.

@gowatana
Last active June 12, 2025 16:01
Show Gist options
  • Select an option

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

Select an option

Save gowatana/53dec500dd613f1811382d5607efe466 to your computer and use it in GitHub Desktop.
resource "nutanix_subnet_v2" "overlay1" {
name = "overlay-11"
subnet_type = "OVERLAY"
vpc_reference = resource.nutanix_vpc_v2.vpc1.ext_id
description = null
ip_config {
ipv4 {
ip_subnet {
ip { value = "10.0.11.0" }
prefix_length = 24
}
default_gateway_ip { value = "10.0.11.1" }
pool_list {
start_ip { value = "10.0.11.10" }
end_ip { value = "10.0.11.19" }
}
}
}
dhcp_options {
domain_name_servers {
ipv4 { value = "192.168.1.101" }
}
domain_name_servers {
ipv4 { value = "192.168.1.102" }
}
search_domains = ["go-lab.jp"]
}
}
@gowatana

gowatana commented May 18, 2025

Copy link
Copy Markdown
Author

下記の投稿むけ。

Terraform で FVN の NAT VPC を構成してみる。Part-01:NAT VPC 環境の作成
https://blog.ntnx.jp/entry/2025/05/17/234906

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