-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
67 lines (54 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
variable "region" {
default = "europe-west1"
}
variable "region_zone" {
default = "europe-west1-d"
}
variable "project_name" {
description = "dummy_project"
}
variable "aws_region" {
type = string
description = "AWS region for S3 bucket"
default = ""
}
variable "aws_access_key" {
type = string
description = "The access key for S3 bucket account"
default = ""
}
variable "aws_secret_key" {
type = string
description = "The secrete key for S3 bucket account"
default = ""
}
variable "project_dns_name" {
type = string
description = "The hosting zone our frontend hosts will be known on"
default = "byteless.net."
}
variable "project_a_record" {
type = string
description = "The A record"
default = "grb"
}
variable "credentials_file_path" {
description = "Path to the JSON file used to describe your account credentials"
default = "~/.gcloud/Terraform.json"
}
variable "public_key_path" {
description = "Path to file containing public key"
default = "~/.ssh/gcloud_id_rsa.pub"
}
variable "private_key_path" {
description = "Path to file containing private key"
default = "~/.ssh/gcloud_id_rsa"
}
variable "install_script_src_path" {
description = "Path to install script within this repository"
default = "scripts/install.sh"
}
variable "install_script_dest_path" {
description = "Path to put the install script on each destination resource"
default = "/tmp/install.sh"
}