-
-
Save gowatana/6ed4a0cf5d308b9eba156502076a92f1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Terraform で FVN の NAT VPC を構成してみる。Part-06:VPC ~ 仮想マシンの作成(Module 化)
https://blog.ntnx.jp/entry/2025/06/16/022510