forked from terraform-aws-modules/terraform-aws-atlantis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terraform.tfvars.sample
41 lines (30 loc) · 1.1 KB
/
terraform.tfvars.sample
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
# VPC - use these parameters to create new VPC resources
cidr = "10.10.0.0/16"
azs = ["eu-west-1a", "eu-west-1b"]
private_subnets = ["10.10.1.0/24", "10.10.2.0/24"]
public_subnets = ["10.10.11.0/24", "10.10.12.0/24"]
# VPC - use these parameters to use existing VPC resources
# vpc_id = "vpc-1651acf1"
# private_subnet_ids = ["subnet-1fe3d837", "subnet-129d66ab"]
# public_subnet_ids = ["subnet-1211eef5", "subnet-163466ab"]
# DNS
route53_zone_name = "example.com"
# ACM (SSL certificate)
# Specify ARN of an existing certificate or new one will be created and validated using Route53 DNS:
# certificate_arn = "arn:aws:acm:eu-west-1:135367859851:certificate/70e008e1-c0e1-4c7e-9670-7bb5bd4f5a84"
# ECS Service and Task
ecs_service_assign_public_ip = true
# Atlantis
atlantis_allowed_repo_names = ["awesome-repo", "another-awesome-repo"]
atlantis_repo_whitelist = ["github.com/terraform-aws-modules/*"]
# Specify one of the following block.
# For Github
atlantis_github_user = ""
atlantis_github_user_token = ""
# For Gitlab
atlantis_gitlab_user = ""
atlantis_gitlab_user_token = ""
# Tags
tags = {
Name = "atlantis"
}