-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
36 lines (32 loc) · 964 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
# As per https://github.com/hashicorp/terraform-provider-aws/issues/2420
# and https://github.com/aws/aws-cli/issues/3875
# we cannot use the AWS_PROFILE env. var. So we use this TF variable
# (or the --profile flag in AWS CLI)
variable "aws_profile" {
type = string
default = "terraform-developer"
description = "AWS CLI profile to use with terraform"
}
variable "outbound_ip_count" {
type = number
description = "Number of outbound IPs to use."
default = 2
}
variable "terratest" {
type = bool
description = "value"
default = false
}
## Secrets passed through the pipeline
variable "ecr_dockerhub_username" {
description = "Docker Hub Username used by ECR Pull Through Cache"
type = string
sensitive = true
default = ""
}
variable "ecr_dockerhub_token" {
description = "Docker Hub Token used by ECR Pull Through Cache"
type = string
sensitive = true
default = ""
}