-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathvar.tfvars
33 lines (27 loc) · 1.07 KB
/
var.tfvars
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
################################################################
# Copyright 2023 - IBM Corporation. All rights reserved
# SPDX-License-Identifier: Apache-2.0
################################################################
### IBM Cloud
ibmcloud_api_key = "<key>"
# VPC
vpc_name = "<zone>"
vpc_region = "<region>"
vpc_zone = "<zone>"
# PowerVS
powervs_service_instance_id = "<cloud_instance_ID>"
powervs_region = "<region>"
powervs_zone = "<zone>"
# VPC Workers
# Zone 1
worker_1 = { count = "1", profile = "cx2-8x16", "zone" = "au-syd-1" }
# Zone 2
worker_2 = { count = "0", profile = "cx2-8x16", "zone" = "au-syd-2" }
# Zone 3
worker_3 = { count = "0", profile = "cx2-8x16", "zone" = "au-syd-3" }
# Public and Private Key for Bastion Nodes
public_key_file = "data/id_rsa.pub"
private_key_file = "data/id_rsa"
# Required for Ignition and Automation to Run (powervs_bastion_private_ip generally belongs to 192.168.200.x range)
powervs_bastion_private_ip = "<Private IP Address of Bastion>"
powervs_bastion_ip = "<Public IP Address of Bastion>"