-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
65 lines (51 loc) · 1.08 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 "vpc_id" {
type = string
description = "VPC ID to use"
}
variable "aws_account_id" {
type = string
description = "AWS Account ID to use to find the AMI"
}
variable "aws_region" {
type = string
description = "AWS region to use"
default = "eu-west-1"
}
variable "subnet_id" {
type = string
description = "AWS subnet to use"
default = "eu-west-1"
}
variable "my_ip_address" {
// read from terraform.tfvars
type = string
}
variable "my_aws_access_key" {
type = string
}
variable "my_aws_secret_key" {
type = string
}
variable "github_user" {
type = string
}
variable "github_token" {
type = string
}
variable "github_webhook_secret" {
type = string
}
variable "github_allow_list" {
type = string
}
variable "infracost_api_key" {
type = string
}
variable "domain_zone_id" {
type = string
description = "The AWS Route53 zone ID to use to create a sub domain"
}
variable "domain_name" {
type = string
description = "The sub domain to use to access Atlantis, such as atlantis.yourdomain.com"
}