Skip to content

Instantly share code, notes, and snippets.

@gowatana
Created June 11, 2025 14:44
Show Gist options
  • Select an option

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

Select an option

Save gowatana/2ae9a4a80d602e8caff8485bba289199 to your computer and use it in GitHub Desktop.
resource "nutanix_subnet_v2" "overlay1" {
name = "overlay-01"
subnet_type = "OVERLAY"
vpc_reference = 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" }
}
}
}
@gowatana
Copy link
Copy Markdown
Author

下記の投稿むけ。

Terraform で FVN の Overlay サブネットを作成してみる。Part-04:VPC & サブネット & 仮想マシンの作成
https://blog.ntnx.jp/entry/2025/06/11/235323

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