generated from nhs-england-tools/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
36 lines (30 loc) · 993 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
33
34
35
36
variable "project_name" {
description = "A name for the project."
type = string
}
variable "github_organisation" {
description = "The GitHub organisation that the GitHub Action resides in."
type = string
}
variable "github_repository" {
description = "The GitHub repository that the GitHub Action resides in."
type = string
}
variable "github_branch" {
description = "The GitHub branch that will be allowed to upload the files to S3 bucket. This will default to 'main'."
type = string
default = "main"
}
variable "bucket_name" {
description = "The name of the S3 bucket that the GitHub Action will upload to."
type = string
}
variable "bucket_resources" {
description = "The list of resources that the GitHub Action will have access to. This will default to none."
default = []
}
variable "tags" {
description = "Tags to apply to the resources created by Terraform."
type = map(string)
default = {}
}