Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions deleteme.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ""
Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down