-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
37 lines (31 loc) · 910 Bytes
/
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
variable "project_name" {
description = "The name for the project (required)"
type = string
}
variable "organization_id" {
description = "The organization ID (required)"
type = string
}
variable "billing_account" {
description = "The ID of the billing account to associate this project with (required)"
type = string
}
variable "network" {
type = string
description = "The VPC network to host the cluster in (required)"
default = "k8s-vpc"
}
variable "subnet" {
type = string
description = "The subnetwork to host the cluster in (required)"
default = "k8s-subnet"
}
variable "subnet_ip" {
type = string
description = "The IP and CIDR range of the subnet being created (required)"
default = "10.128.0.0/20"
}
variable "region" {
type = string
description = "The region to deploy the resources in (required)"
}