Skip to content

Commit

Permalink
2.4.0: add 1.31 release
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jan 2, 2025
1 parent 67c4592 commit 4d227d6
Show file tree
Hide file tree
Showing 262 changed files with 11,053 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,7 @@
* 2.3.5 -- 2024-10-16
- common-services/dns.tf
- change to use aws-dns//cname module

* 2.4.0 -- 2025-01-02
- 1.31:
- create new 1.31, updated charts and images
5 changes: 5 additions & 0 deletions examples/full-cluster-tf-upgrade/1.31/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
kube.config
ecr-login.txt
setup/ec2-ssh-eks-*
!setup/ec2-ssh-eks-*.pub
logs
20 changes: 20 additions & 0 deletions examples/full-cluster-tf-upgrade/1.31/.tf-control
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# .tf-control
# allows for setting a specific command to be used for tf-* commands under this git repo
# see tf-control.sh help for more info

TFCONTROL_VERSION="1.0.5"

TFCOMMAND="terraform_latest"
# TF_CLI_CONFIG_FILE=PATH-TO-FILE/.tf-control.tfrc
# TFARGS=""
# TFNOLOG=""
# TFNOCOLOR=""

# use the following to force a specific version. An upgrade of an existing 0.12.31 to 1.x
# needs you to cycle through 0.13.17, 0.14.11, and then latest (0.15.5 not needed). Other
# steps in between. See https://github.e.it.census.gov/terraform/support/tree/master/docs/how-to/terraform-upgrade for details
#
#TFCOMMAND="terraform_0.12.31"
#TFCOMMAND="terraform_0.13.7"
#TFCOMMAND="terraform_0.14.11"
#TFCOMMAND="terraform_0.15.5"
24 changes: 24 additions & 0 deletions examples/full-cluster-tf-upgrade/1.31/.tf-control.tfrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
TFCONTROL_VERSION="1.0.5"

# https://www.terraform.io/docs/cli/config/config-file.html
plugin_cache_dir = "/data/terraform/terraform.d/plugin-cache"
#disable_checkpoint = true

provider_installation {
# filesystem_mirror {
# path = "/apps/terraform/terraform.d/providers"
# include = [ "*/*/*" ]
# }
filesystem_mirror {
path = "/data/terraform/terraform.d/providers"
include = [ "*/*/*" ]
}
# filesystem_mirror {
# path = "/apps/terraform/terraform.d/providers"
# include = [ "external.terraform.census.gov/*/*" ]
# }
direct {
include = [ "*/*/*" ]
}
}

Loading

0 comments on commit 4d227d6

Please sign in to comment.