Skip to content

Instantly share code, notes, and snippets.

@gowatana
Created June 10, 2025 14:23
Show Gist options
  • Select an option

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

Select an option

Save gowatana/79e06cea1d462e4b191f77059ff050ad to your computer and use it in GitHub Desktop.
resource "nutanix_subnet_v2" "overlay1" {
name = "overlay-02"
subnet_type = "OVERLAY"
vpc_reference = data.nutanix_vpcs_v2.vpc1.vpcs[0].ext_id
description = null
ip_config {
ipv4 {
ip_subnet {
ip { value = "10.0.2.0" }
prefix_length = 24
}
default_gateway_ip { value = "10.0.2.1" }
}
}
}
@gowatana
Copy link
Author

下記の投稿むけ。

Terraform で FVN の Overlay サブネットを作成してみる。Part-03:サブネットと仮想マシンの追加
https://blog.ntnx.jp/entry/2025/06/10/234105

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