-
-
Save gowatana/c39bbfe159ac055aa3465f8f6f950211 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| resource "nutanix_subnet_v2" "overlay1" { | |
| name = "overlay-01" | |
| subnet_type = "OVERLAY" | |
| vpc_reference = resource.nutanix_vpc_v2.vpc1.ext_id | |
| description = null | |
| ip_config { | |
| ipv4 { | |
| ip_subnet { | |
| ip { value = "10.0.1.0" } | |
| prefix_length = 24 | |
| } | |
| default_gateway_ip { value = "10.0.1.1" } | |
| } | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
下記の投稿むけ。
Terraform で FVN の Overlay サブネットを作成してみる。Part-01:VPC & サブネットの作成
https://blog.ntnx.jp/entry/2025/05/13/234218