Skip to content

Instantly share code, notes, and snippets.

@gowatana
Created June 15, 2025 17:03
Show Gist options
  • Select an option

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

Select an option

Save gowatana/6ed4a0cf5d308b9eba156502076a92f1 to your computer and use it in GitHub Desktop.
variable "cluster_name" {
description = "Name of the Prism Element Cluster"
type = string
}
variable "ext_subnet_name" {
description = "Name of the external VLAN subnet"
type = string
}
variable "vpc_name" {
description = "Name of the VPC"
type = string
}
variable "overlay_subnet_name" {
description = "Name of the overlay subnet"
type = string
}
variable "vm_name_prefix" {
description = "Prefix for VM names"
type = string
}
variable "vm_count" {
description = "Number of virtual machines to create"
type = number
}
variable "os_image_name" {
description = "Name of the Oracle Linux cloud image name"
type = string
}
variable "cloud_init_b64" {
description = "base64 encoded cloud-init user_data"
type = string
}
@gowatana
Copy link
Author

Terraform で FVN の NAT VPC を構成してみる。Part-06:VPC ~ 仮想マシンの作成(Module 化)
https://blog.ntnx.jp/entry/2025/06/16/022510

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