-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
37 lines (31 loc) · 1.03 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
variable "repo_name" {
description = "Name of the repository."
type = string
default = "JulienQNN/terraform-aws-codebuild-hosted-github-action-runner"
}
################################################################################
# Tagging
################################################################################
variable "custom_tags" {
description = "A map of tags to add to all resources."
type = map(string)
default = {}
}
################################################################################
# Common variables
################################################################################
variable "app_name" {
description = "Name of the application."
type = string
default = "terraform-aws-codebuild-hosted-github-action-runner"
}
variable "app_env" {
description = "Environment name of the application."
type = string
default = "test"
}
variable "app_owner" {
description = "Owner of the application."
type = string
default = "me"
}