Skip to content

Commit

Permalink
fix: elb_logs_prefix should be string not list(string) (#319)
Browse files Browse the repository at this point in the history
  • Loading branch information
esacteksab authored Jan 15, 2025
1 parent a1456da commit b22f7c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ variable "elb_accounts" {

variable "elb_logs_prefix" {
description = "S3 prefix for ELB logs."
default = ["elb"]
type = list(string)
default = "elb"
type = string
}

variable "enable_mfa_delete" {
Expand Down
5 changes: 4 additions & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ terraform {
required_version = ">= 1.0"

required_providers {
aws = ">= 3.75.0"
aws = {
source = "hashicorp/aws"
version = ">= 3.75.0"
}
}
}

0 comments on commit b22f7c4

Please sign in to comment.