Skip to content

Instantly share code, notes, and snippets.

@gowatana
Created June 15, 2025 12:31
Show Gist options
  • Select an option

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

Select an option

Save gowatana/a32242a84f060549e81ae1c5514c5a6f to your computer and use it in GitHub Desktop.
variable "cluster_name" {
description = "Name of the Prism Element Cluster"
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 "overlay_gateway_ip" {
description = "overlay gateway ip"
type = string
}
variable "overlay_network_address" {
description = "overlay network address"
type = string
}
variable "overlay_prefix_length" {
description = "overlay network address"
type = number
}
variable "overlay_pool_start_ip" {
description = "overlay IP Pool start address"
type = string
}
variable "overlay_pool_end_ip" {
description = "overlay IP Pool end address"
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
Copy Markdown
Author

下記の投稿むけ。

Terraform で FVN の NAT VPC を構成してみる。Part-05:セグメントと仮想マシンの作成(Module 化)
https://blog.ntnx.jp/entry/2025/06/15/221729

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