-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
51 lines (42 loc) · 1.46 KB
/
variables.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
variable "ibmcloud_api_key" {
description = "The IBM Cloud API key to use for provisioning resources"
type = string
sensitive = true
}
variable "tailscale_api_key" {
description = "The Tailscale API key"
type = string
sensitive = true
}
variable "tailscale_organization" {
description = "The Tailscale tailnet Organization name. Can be found in the Tailscale admin console > Settings > General."
type = string
}
variable "project_prefix" {
description = "The prefix to use for naming resources. If none is provided, a random string will be generated."
type = string
default = ""
}
variable "ibmcloud_region" {
description = "The IBM Cloud region to use for provisioning VPCs and other resources."
type = string
}
variable "existing_resource_group" {
description = "The IBM Cloud resource group to assign to the provisioned resources."
type = string
}
variable "existing_ssh_key" {
description = "The name of an existing SSH key to use for provisioning resources. If one is not provided, a new key will be generated."
type = string
default = ""
}
variable "private_dns_zone" {
description = "Name of the private DNS zone to create for the VPCs"
type = string
default = "internal.lab"
}
variable "allowed_ssh_ip" {
description = "The IP address or CIDR block to allow SSH access from in to our Tailscale router instance."
type = string
default = "0.0.0.0/0"
}