Skip to content

Commit

Permalink
Upgrade terraform to 0.13.7
Browse files Browse the repository at this point in the history
  • Loading branch information
stoyanr committed Nov 3, 2021
1 parent 55083e5 commit abec510
Show file tree
Hide file tree
Showing 15 changed files with 87 additions and 34 deletions.
2 changes: 1 addition & 1 deletion build/alicloud/TF_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.31
0.13.7
12 changes: 9 additions & 3 deletions build/alicloud/terraform-bundle.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ terraform {
}

providers {
alicloud = ["1.124.2"]
template = ["2.1.2"]
null = ["2.1.2"]
alicloud = {
versions = ["1.124.2"]
}
template = {
versions = ["2.1.2"]
}
null = {
versions = ["2.1.2"]
}
}
2 changes: 1 addition & 1 deletion build/all/TF_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.31
0.13.7
38 changes: 29 additions & 9 deletions build/all/terraform-bundle.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,33 @@ terraform {
}

providers {
aws = ["3.63.0"]
azurerm = ["2.68.0"]
google = ["3.62.0"]
google-beta = ["3.62.0"]
openstack = ["1.37.0"]
alicloud = ["1.124.2"]
packet = ["2.3.0"]
template = ["2.1.2"]
null = ["2.1.2"]
aws = {
versions = ["3.63.0"]
}
azurerm = {
versions = ["2.68.0"]
}
google = {
versions = ["3.62.0"]
}
google-beta = {
versions = ["3.62.0"]
}
openstack = {
versions = ["1.37.0"]
source = "terraform-provider-openstack/openstack"
}
alicloud = {
versions = ["1.124.2"]
}
metal = {
versions = ["3.1.0"]
source = "equinix/metal"
}
template = {
versions = ["2.1.2"]
}
null = {
versions = ["2.1.2"]
}
}
2 changes: 1 addition & 1 deletion build/aws/TF_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.31
0.13.7
12 changes: 9 additions & 3 deletions build/aws/terraform-bundle.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ terraform {
}

providers {
aws = ["3.63.0"]
template = ["2.1.2"]
null = ["2.1.2"]
aws = {
versions = ["3.63.0"]
}
template = {
versions = ["2.1.2"]
}
null = {
versions = ["2.1.2"]
}
}
2 changes: 1 addition & 1 deletion build/azure/TF_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.31
0.13.7
12 changes: 9 additions & 3 deletions build/azure/terraform-bundle.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ terraform {
}

providers {
azurerm = ["2.68.0"]
template = ["2.1.2"]
null = ["2.1.2"]
azurerm = {
versions = ["2.68.0"]
}
template = {
versions = ["2.1.2"]
}
null = {
versions = ["2.1.2"]
}
}
2 changes: 1 addition & 1 deletion build/equinixmetal/terraform-bundle.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ terraform {
}

providers {
metal = {
metal = {
versions = ["3.1.0"]
source = "equinix/metal"
}
Expand Down
2 changes: 1 addition & 1 deletion build/gcp/TF_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.31
0.13.7
16 changes: 12 additions & 4 deletions build/gcp/terraform-bundle.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,16 @@ terraform {
}

providers {
google = ["3.62.0"]
google-beta = ["3.62.0"]
template = ["2.1.2"]
null = ["2.1.2"]
google = {
versions = ["3.62.0"]
}
google-beta = {
versions = ["3.62.0"]
}
template = {
versions = ["2.1.2"]
}
null = {
versions = ["2.1.2"]
}
}
2 changes: 1 addition & 1 deletion build/openstack/TF_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.31
0.13.7
13 changes: 10 additions & 3 deletions build/openstack/terraform-bundle.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,14 @@ terraform {
}

providers {
openstack = ["1.37.0"]
template = ["2.1.2"]
null = ["2.1.2"]
openstack = {
versions = ["1.37.0"]
source = "terraform-provider-openstack/openstack"
}
template = {
versions = ["2.1.2"]
}
null = {
versions = ["2.1.2"]
}
}
2 changes: 1 addition & 1 deletion build/slim/TF_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.31
0.13.7
2 changes: 1 addition & 1 deletion hack/get-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ fi
# as a dirty work tree.
# Additionally, it filters out changes to the `VERSION` file, as this is currently the only way to inject the
# version-to-build in our pipelines (see https://github.com/gardener/cc-utils/issues/431).
TREE_STATE="$([ -z "$(git status --porcelain 2>/dev/null | grep -vf <(git ls-files --deleted --ignored --exclude-from=.dockerignore) -e 'VERSION')" ] && echo clean || echo dirty)"
TREE_STATE="$([ -z "$(git status --porcelain 2>/dev/null | grep -vf <(git ls-files -o --deleted --ignored --exclude-from=.dockerignore) -e 'VERSION')" ] && echo clean || echo dirty)"

if [ "$TREE_STATE" = dirty ] ; then
VERSION="$VERSION-dirty"
Expand Down

0 comments on commit abec510

Please sign in to comment.