generated from cloudposse/terraform-example-module
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathvariables.tf
More file actions
18 lines (17 loc) · 752 Bytes
/
variables.tf
File metadata and controls
18 lines (17 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
variable "elb_logging_bucket_resource_arn" {
type = string
description = <<-EOT
The AWS Resource ARN to use in the policy granting access to Load Balancer Logging.
Typically of the form `arn:aws:s3:::_bucket-name_/_prefix_/AWSLogs/_your-aws-account-id_/*`.
Required to generate `elb_logging_s3_bucket_policy_json`.
See [AWS Documentation](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/enable-access-logging.html#attach-bucket-policy).
EOT
default = ""
}
variable "elb_logging_region" {
description = <<-EOT
Full region (e.g. `us-east-1`) where ELB logging is taking place. Required to generate `elb_s3_bucket_policy_json`.
Must be known at "plan" time.
EOT
default = ""
}