-
-
Save gowatana/a32242a84f060549e81ae1c5514c5a6f 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 "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 | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
下記の投稿むけ。
Terraform で FVN の NAT VPC を構成してみる。Part-05:セグメントと仮想マシンの作成(Module 化)
https://blog.ntnx.jp/entry/2025/06/15/221729