-
Notifications
You must be signed in to change notification settings - Fork 34
/
variables.tf
32 lines (26 loc) · 941 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
variable "destination_org" {
description = "The name of the organization in Github that will contain the templated repo."
default = "hashicorp-education"
}
variable "gh_token" {
description = "Github token with permissions to create and delete repos."
}
variable "waypoint_application" {
type = string
description = "Name of the Waypoint project."
validation {
condition = !contains(["-", "_"], var.waypoint_application)
error_message = "waypoint_application must not contain dashes or underscores."
}
}
variable "domain" {
description = "The top level domain name used for redirects."
default = "hathatgames.com"
}
variable "aws_region" {
description = "The AWS region to contain resources."
default = "us-east-1"
}
variable "route53_zone_id" {
description = "The premade route53 zone ID. The zone is created outside of here so that the domain config can be set up beforehand."
}