diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 1cecb6b..37474a9 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -13,7 +13,7 @@ # Teams can be specified as code owners as well. Teams should be identified in # the format @org/team-name. Teams must have explicit write access to the # repository. -* @mitlibraries/infraeng-terraform-reviewers +* @mitlibraries/infraeng # We set the senior engineer in the team as the owner of the CODEOWNERS file as # a layer of protection for unauthorized changes. diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0a3d25a..19c1cb6 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.97.3" + rev: "v1.97.4" hooks: - id: terraform_fmt args: @@ -12,7 +12,7 @@ repos: - id: terraform-docs-go args: ["markdown", "table", "--config", "./.terraform-docs.yaml", "--recursive", "--output-file", "README.md", "./"] - repo: https://github.com/bridgecrewio/checkov.git - rev: '3.2.373' + rev: '3.2.378' hooks: - id: checkov verbose: false diff --git a/README.md b/README.md index 25f22c7..ca92dfd 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ This section provides a description of CloudWatch logging and any monitoring in | Name | Version | |------|---------| -| terraform | ~> 1.10 | +| terraform | ~> 1.11 | | aws | ~> 5.0 | ## Providers diff --git a/deleteme.tf b/deleteme.tf index 8c75156..ea5eced 100644 --- a/deleteme.tf +++ b/deleteme.tf @@ -6,18 +6,17 @@ # The Infra dev will need to update the string for the first row in this # locals block to an appropriate name for the resources created in this # file. Depending on the repository, the actual name of the variable might -# also need to be changed. When that is done, ALL occurences of the "_resource" +# also need to be changed. When that is done, ALL occurrences of the "_resource" # must be replaced in the file. # The text in the variable name after the underscore is necessary to distinguish # the naming in this file from the naming in other files in this repository. # # The locals block below should be copied and pasted into resource-creating .tf # files. Then, this file should be deleted. -# locals { # This is the base name for resources for this app. A string must be entered - # betwee the quotes. And, all instances of "_resource" must be replaced with an + # between the quotes. And, all instances of "_resource" must be replaced with an # identifier that matches the file/resources that are created by this file. # name_resource = "" diff --git a/versions.tf b/versions.tf index 95b6513..29dd2e1 100644 --- a/versions.tf +++ b/versions.tf @@ -3,7 +3,7 @@ # Providers themselves are set in the `providers.tf` file. terraform { - required_version = "~> 1.10" + required_version = "~> 1.11" required_providers { aws = {