Skip to content

Commit

Permalink
Allow 7 instead of 5 characters for (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Varner authored May 16, 2024
1 parent ec2859b commit 129b9df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [2.23.0] - 2024-05-16

### Changed

- Allow 7 instead of 5 characters for `environment`

### Fixed

- Fixed filmdrop built-in vpc output references and mappings
Expand Down
4 changes: 2 additions & 2 deletions inputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ variable "environment" {
description = "Project environment."
type = string
validation {
condition = length(var.environment) <= 5
error_message = "The environment value must be 5 or fewer characters."
condition = length(var.environment) <= 7
error_message = "The environment value must be 7 or fewer characters."
}
}

Expand Down

0 comments on commit 129b9df

Please sign in to comment.