-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables-powervs.tf
78 lines (63 loc) · 1.68 KB
/
variables-powervs.tf
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
variable "cluster_id" {
type = string
description = "The ID created by the installer to uniquely identify the created cluster."
}
variable "powervs_api_key" {
default = ""
}
variable "powervs_dns_server" {
type = string
description = "The desired DNS server for the DHCP instance to server."
default = "1.1.1.1"
}
variable "powervs_ignition" {
type = string
description = "The ignition file."
}
variable "powervs_image_bucket_file_name" {
type = string
description = "File name of the image in the COS bucket."
}
variable "powervs_image_bucket_name" {
type = string
description = "Name of the COS bucket containing the image to be imported."
}
variable "powervs_image_cos_bucket_location" {
type = string
description = "The region in which to create the Cloud Object Store bucket. Used for the igntion file."
}
variable "powervs_keypair_name" {
default = ""
}
variable "powervs_machine_cidr" {
type = string
description = "The machine network (IPv4 only)"
}
variable "powervs_region" {
default = "dal"
}
variable "powervs_password_hash" {
type = string
description = "Hash of the bootstrap and cluster node password"
}
variable "powervs_resource_group" {
type = string
description = "The cloud instance resource group"
}
variable "powervs_vpc_name" {
type = string
description = "The name of a pre-created VPC."
default = ""
}
variable "powervs_zone" {
type = string
default = "dal10"
}
variable "vpc_region" {
type = string
description = "Region of a VPC connection to the transit gateway"
}
variable "vpc_zone" {
type = string
description = "Zone"
}