diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 74f3751..d5886a6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/antonbabenko/pre-commit-terraform - rev: v1.76.0 + rev: v1.77.0 hooks: - id: terraform_fmt - id: terraform_validate @@ -23,7 +23,7 @@ repos: - '--args=--only=terraform_standard_module_structure' - '--args=--only=terraform_workspace_remote' - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v4.4.0 hooks: - id: check-merge-conflict - id: end-of-file-fixer diff --git a/variables.tf b/variables.tf index 5db5914..bf24c34 100644 --- a/variables.tf +++ b/variables.tf @@ -30,7 +30,7 @@ variable "repository" { type = string validation { - condition = can(regex("^https:\\/\\/github\\.com\\/(clowdhaus)|(serverless-delivery)", var.repository)) - error_message = "The repository should be in the clowdhaus or serverless-delivery organization." + condition = can(regex("^https:\\/\\/github\\.com\\/(clowdhaus)|(serverless-delivery|aws-blueprints)", var.repository)) + error_message = "The repository should be in the clowdhaus, serverless-delivery, or aws-blueprints organization." } }