-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
39 lines (30 loc) · 1.24 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
variable "vsphere_user" {
description = "Vsphere user name, eg. [email protected]"
}
variable "vsphere_password" { }
variable "vsphere_server" { }
variable "network_dns" { default = "8.8.8.8" }
variable "network_address" { }
variable "network_gateway" { default = "192.168.0.1" }
variable "vsphere_datacenter" { }
variable "vsphere_datastore_name" { }
variable "vsphere_network_name" { }
variable "vsphere_resource_pool_name" { }
variable "virtual_machine_template_name" { default = "coreos-stable" }
variable "virtual_machine_name" { }
variable "num_cpus" { default = "1" }
variable "memory" { default = "512" }
variable "disk_size" { default = "8" }
variable "domain_name" { default = "" }
variable "notifications_endpoints_name" { default = "" }
variable "notifications_endpoints_disabled" { default = "true" }
variable "notifications_endpoints_url" { default = "" }
# Terraform Backend variables
# NOTE Backend modules have no interpolation due to their early loading.
# Leaving here for reference
#
# variable "aws_access_key_id" { }
# variable "aws_secret_access_key" { }
# variable "aws_region" { default = "us-east-1" }
#
# variable "s3_bucket" { }