Skip to content

Commit 12b95d0

Browse files
fix(deps): update terraform ibm to latest for the landing zone das (#802)
1 parent ccd163d commit 12b95d0

File tree

15 files changed

+28
-27
lines changed

15 files changed

+28
-27
lines changed

.catalog-onboard-pipeline.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ offerings:
1010
- name: quickstart
1111
mark_ready: false
1212
install_type: fullstack
13-
validation_type: projects
13+
validation_type: schematics
1414
- name: standard
1515
mark_ready: false
1616
install_type: fullstack
17-
validation_type: projects
17+
validation_type: schematics
1818
scc:
1919
instance_id: 1c7d5f78-9262-44c3-b779-b28fe4d88c37
2020
region: us-south
2121
- name: existing-vpc
2222
mark_ready: false
2323
install_type: extension
24-
validation_type: projects
24+
validation_type: schematics
2525
pre_validation: "tests/scripts/pre-validation-deploy-slz-vpc.sh"
2626
post_validation: "tests/scripts/post-validation-destroy-slz-vpc.sh"
2727
scc:
@@ -36,7 +36,7 @@ offerings:
3636
- name: standard
3737
mark_ready: false
3838
install_type: fullstack
39-
validation_type: projects
39+
validation_type: schematics
4040
scc:
4141
instance_id: 1c7d5f78-9262-44c3-b779-b28fe4d88c37
4242
region: us-south
@@ -49,11 +49,11 @@ offerings:
4949
- name: standard
5050
mark_ready: false
5151
install_type: fullstack
52-
validation_type: projects
52+
validation_type: schematics
5353
scc:
5454
instance_id: 1c7d5f78-9262-44c3-b779-b28fe4d88c37
5555
region: us-south
5656
- name: quickstart
5757
mark_ready: false
5858
install_type: fullstack
59-
validation_type: projects
59+
validation_type: schematics

.secrets.baseline

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"files": "go.sum|^.secrets.baseline$",
44
"lines": null
55
},
6-
"generated_at": "2023-12-13T18:26:42Z",
6+
"generated_at": "2023-12-14T18:26:42Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"

cluster.tf

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,15 @@ resource "ibm_container_vpc_cluster" "cluster" {
4949
lookup(each.value, "kube_version", null) == "default" || lookup(each.value, "kube_version", null) == null
5050
? local.default_kube_version[each.value.kube_type] : each.value.kube_version
5151
)
52-
tags = var.tags
53-
wait_till = var.wait_till
54-
entitlement = each.value.entitlement
55-
secondary_storage = each.value.secondary_storage
56-
cos_instance_crn = each.value.cos_instance_crn
57-
pod_subnet = each.value.pod_subnet
58-
service_subnet = each.value.service_subnet
59-
disable_outbound_traffic_protection = each.value.disable_outbound_traffic_protection
52+
tags = var.tags
53+
wait_till = var.wait_till
54+
entitlement = each.value.entitlement
55+
secondary_storage = each.value.secondary_storage
56+
cos_instance_crn = each.value.cos_instance_crn
57+
pod_subnet = each.value.pod_subnet
58+
service_subnet = each.value.service_subnet
59+
# if kube_version is older than 4.15, default this value to null, otherwise provider will fail
60+
disable_outbound_traffic_protection = startswith((lookup(each.value, "kube_version", null) == "default" || lookup(each.value, "kube_version", null) == null ? local.default_kube_version[each.value.kube_type] : each.value.kube_version), "4.12") || startswith((lookup(each.value, "kube_version", null) == "default" || lookup(each.value, "kube_version", null) == null ? local.default_kube_version[each.value.kube_type] : each.value.kube_version), "4.13") || startswith((lookup(each.value, "kube_version", null) == "default" || lookup(each.value, "kube_version", null) == null ? local.default_kube_version[each.value.kube_type] : each.value.kube_version), "4.14") ? null : each.value.disable_outbound_traffic_protection
6061
force_delete_storage = each.value.cluster_force_delete_storage
6162
crk = each.value.boot_volume_crk_name == null ? null : regex("key:(.*)", module.key_management.key_map[each.value.boot_volume_crk_name].crn)[0]
6263
kms_instance_id = each.value.boot_volume_crk_name == null ? null : regex(".*:(.*):key:.*", module.key_management.key_map[each.value.boot_volume_crk_name].crn)[0]

examples/one-vpc-one-vsi/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
ibm = {
55
source = "IBM-Cloud/ibm"
6-
version = "1.65.1"
6+
version = "1.66.0"
77
}
88
}
99
}

examples/override-example/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ terraform {
33
required_providers {
44
ibm = {
55
source = "IBM-Cloud/ibm"
6-
version = "1.65.1"
6+
version = "1.66.0"
77
}
88
}
99
}

patterns/mixed/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
required_providers {
99
ibm = {
1010
source = "IBM-Cloud/ibm"
11-
version = "1.65.1"
11+
version = "1.66.0"
1212
}
1313
external = {
1414
source = "hashicorp/external"

patterns/roks-quickstart/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
# renovate is set up to keep provider version at the latest for all DA solutions
55
ibm = {
66
source = "IBM-Cloud/ibm"
7-
version = "1.65.1"
7+
version = "1.66.0"
88
}
99
}
1010
}

patterns/roks/module/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ terraform {
99
# tflint-ignore: terraform_unused_required_providers
1010
ibm = {
1111
source = "IBM-Cloud/ibm"
12-
version = ">= 1.65.1"
12+
version = ">= 1.66.0"
1313
}
1414
external = {
1515
source = "hashicorp/external"

patterns/roks/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ terraform {
88
required_providers {
99
ibm = {
1010
source = "IBM-Cloud/ibm"
11-
version = "1.65.1"
11+
version = "1.66.0"
1212
}
1313
# tflint-ignore: terraform_unused_required_providers
1414
external = {

patterns/vpc/module/version.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ terraform {
99
# tflint-ignore: terraform_unused_required_providers
1010
ibm = {
1111
source = "IBM-Cloud/ibm"
12-
version = ">= 1.65.1"
12+
version = ">= 1.66.0"
1313
}
1414
external = {
1515
source = "hashicorp/external"

0 commit comments

Comments
 (0)