You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1
Original file line number
Diff line number
Diff line change
@@ -186,6 +186,7 @@ allow_github_webhooks = true
186
186
| alb\_http\_security\_group\_tags | Additional tags to put on the http security group |`map(string)`|`{}`| no |
187
187
| alb\_https\_security\_group\_tags | Additional tags to put on the https security group |`map(string)`|`{}`| no |
188
188
| alb\_ingress\_cidr\_blocks | List of IPv4 CIDR ranges to use on all ingress rules of the ALB. |`list(string)`| <pre>[<br> "0.0.0.0/0"<br>]</pre> | no |
189
+
| alb\_listener\_ssl\_policy\_default | The security policy if using HTTPS externally on the load balancer. [See](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html). |`string`|`"ELBSecurityPolicy-2016-08"`| no |
189
190
| alb\_log\_bucket\_name | S3 bucket (externally created) for storing load balancer access logs. Required if alb\_logging\_enabled is true. |`string`|`""`| no |
190
191
| alb\_log\_location\_prefix | S3 prefix within the log\_bucket\_name under which logs are stored. |`string`|`""`| no |
191
192
| alb\_logging\_enabled | Controls if the ALB will log requests to S3. |`bool`|`false`| no |
| alb\_ingress\_cidr\_blocks | List of IPv4 CIDR ranges to use on all ingress rules of the ALB - use your personal IP in the form of `x.x.x.x/32` for restricted testing |`list(string)`| n/a | yes |
42
43
| allowed\_repo\_names | Repositories that Atlantis will listen for events from and a webhook will be installed |`list(string)`| n/a | yes |
43
44
| domain | Route53 domain name to use for ACM certificate. Route53 zone for this domain should be created in advance |`string`| n/a | yes |
Copy file name to clipboardExpand all lines: examples/github-complete/variables.tf
+3-3
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,9 @@ variable "domain" {
9
9
type=string
10
10
}
11
11
12
-
variable"personal_ip" {
13
-
description="Your current, personally ip to restrict access to Atlantis UI ending with `/32` for subnet"
14
-
type=string
12
+
variable"alb_ingress_cidr_blocks" {
13
+
description="List of IPv4 CIDR ranges to use on all ingress rules of the ALB - use your personal IP in the form of `x.x.x.x/32` for restricted testing"
description="The security policy if using HTTPS externally on the load balancer. [See](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/create-https-listener.html)."
155
+
type=string
156
+
default="ELBSecurityPolicy-2016-08"
157
+
}
158
+
153
159
# ACM
154
160
variable"certificate_arn" {
155
161
description="ARN of certificate issued by AWS ACM. If empty, a new ACM certificate will be created and validated using Route53 DNS"
0 commit comments