-
Notifications
You must be signed in to change notification settings - Fork 6
/
variables.tf
65 lines (50 loc) · 1.69 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
variable "region" {
description = "AWS region to deploy to (e.g. ap-southeast-2)"
}
variable "name" {
description = "Name of project (used in AWS resource names)"
}
variable "kms_key_arns" {
description = "Array of KMS Key ARNs used to decrypt secrets specified via ssm_parameter_arns variable"
}
variable "ssm_parameter_arns" {
description = "Array of SSM Parameter ARNs used to set secret build environment variables via SSM Parameter Store"
}
variable "build_docker_image" {
description = "Docker image to use as build environment"
}
variable "build_docker_tag" {
description = "Docker image tag to use as build environment"
}
variable "buildspec" {
description = "The build spec declaration to use"
}
variable "approval_sns_topic_arn" {
description = "Approval notifications will be published to the specified SNS topic. Required if require_approval is true."
default = ""
}
variable "github_oauth_token" {
description = "OAuth token used to authenticate against CodePipeline source GitHub repository"
}
variable "github_repository_owner" {
description = "Owner of GitHub repository to use as CodePipeline source"
}
variable "github_repository_name" {
description = "Name of GitHub repository to use as CodePipeline source"
}
variable "github_branch_name" {
description = "GitHub repository branch to use as CodePipeline source"
}
variable "dns_name" {
description = "DNS name for app"
}
variable "route53_zone_id" {
description = "Route 53 Hosted Zone ID"
}
variable "acm_arn" {
description = "ARN of ACM SSL certificate"
}
variable "cache_bucket" {
description = "S3 bucket to use as build cache, the value must be a valid S3 bucket name/prefix"
default = ""
}