-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathvariables.tf
34 lines (28 loc) · 1 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
variable "template_org" {
description = "The name of the organization in Github that will contain the example app repo."
default = "hashicorp-education"
}
variable "template_repo" {
description = "The name of the repository in Github that contains the example app code."
default = "learn-hcp-waypoint-static-app-template"
}
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."
sensitive = true
}
variable "slack_hook_url" {
description = "The Slack webhook URL for publishing messages."
default = ""
}
variable "waypoint_application" {
type = string
description = "Name of the Waypoint application."
validation {
condition = !contains(["-", "_"], var.waypoint_application)
error_message = "waypoint_application must not contain dashes or underscores."
}
}