From f46659e64607b7a0951fc7e8acc0ab536fa90813 Mon Sep 17 00:00:00 2001 From: "Patrick T. Rutledge III" Date: Tue, 19 Nov 2024 11:30:23 -0600 Subject: [PATCH] Update variables.tf --- variables.tf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/variables.tf b/variables.tf index 45cb40e..34806b8 100644 --- a/variables.tf +++ b/variables.tf @@ -9,32 +9,32 @@ variable "ibmcloud_zone" { } variable "resource_group" { - default = "Default" + default = "rhdp-rg" description = "Define the resource group for the workload" } variable "vpc_name" { - default = "rhpds" + default = "rhdp-vpc" description = "Name of your VPC" } variable "subnet_name" { - default = "rhpds" + default = "rhdp-subnet" description = "Name of your Subnet" } -variable "pg_name" { - default = "rhpds" +variable "pgw_name" { + default = "rhdp-pgw" description = "Name of your Public Gateway" } variable "cos_name" { - default = "rhpds" + default = "rhdp-cos" description = "Cloud Object Storage resource instance" } variable "cluster_name" { - default = "rhpds" + default = "rhdp-rhoic" description = "Name of RHOIC Cluster" }