Skip to content

Commit

Permalink
tf fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
brookesargent committed Oct 13, 2023
1 parent 26d034c commit 47d9a56
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions modules/rds-logs/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -134,12 +134,12 @@ variable "http_buffering_interval" {
}

variable "lambda_function_architecture" {
type = string
default = "arm64"
type = string
default = "arm64"
description = "Instruction set architecture for your Lambda function."
validation {
condition = contains(["amd64", "arm64"],
var.lambda_function_architecture)
var.lambda_function_architecture)
error_message = "Not an allowed Lambda architecture."
}
}
Expand Down
6 changes: 3 additions & 3 deletions modules/s3-logfile/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ variable "kms_key_arn" {
}

variable "lambda_function_architecture" {
type = string
default = "arm64"
type = string
default = "arm64"
description = "Instruction set architecture for your Lambda function."
validation {
condition = contains(["amd64", "arm64"],
var.lambda_function_architecture)
var.lambda_function_architecture)
error_message = "Not an allowed Lambda architecture."
}
}
Expand Down

0 comments on commit 47d9a56

Please sign in to comment.