Skip to content

Instantly share code, notes, and snippets.

@gowatana
Last active June 10, 2025 13:15
Show Gist options
  • Select an option

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

Select an option

Save gowatana/c39bbfe159ac055aa3465f8f6f950211 to your computer and use it in GitHub Desktop.
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" }
}
}
}
@gowatana
Copy link
Author

gowatana commented May 13, 2025

下記の投稿むけ。

Terraform で FVN の Overlay サブネットを作成してみる。Part-01:VPC & サブネットの作成
https://blog.ntnx.jp/entry/2025/05/13/234218

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