Skip to content

Commit c817afa

Browse files
committed
update docs and landing zone version
1 parent 70965f0 commit c817afa

File tree

7 files changed

+14
-12
lines changed

7 files changed

+14
-12
lines changed

app-install/version.tf

+1-1
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.54.0"
6+
version = ">= 1.54.0"
77
}
88
}
99
}

custom-slz/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
##############################################################################
44

55
module "landing_zone" {
6-
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone.git//patterns/vsi?ref=v4.4.4"
6+
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone.git//patterns/vsi?ref=v4.6.0"
77
prefix = var.prefix
88
region = var.region
99
ibmcloud_api_key = var.ibmcloud_api_key

custom-slz/version.tf

+1-1
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.54.0"
6+
version = "1.56.1"
77
}
88
}
99
}

docs/part2/20-custom-module.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ You can find the code for this step in the [custom-slz](https://github.com/IBM/i
1919
Notice these two settings in the `main.tf` file:
2020

2121
- The `override_json_string` input variable takes the full JSON definition. In this example, the JSON that is passed to the module through the `templatefile` function first to 'inject' the prefix. That process is done to ensure uniqueness of the resource group names in the account, as mentioned in the first item.
22-
- The `source` is set to the standard VSI pattern and points to the version 4.5.4 (the most recent version at the time that this lab was written).
22+
- The `source` is set to the standard VSI pattern and points to the version 4.6.0 (the most recent version at the time that this lab was written).
2323

2424
```hcl
2525
module "landing_zone" {
26-
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone.git//patterns/vsi?ref=v4.5.4"
26+
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone.git//patterns/vsi?ref=v4.6.0"
2727
prefix = var.prefix
2828
region = var.region
2929
ibmcloud_api_key = var.ibmcloud_api_key

docs/part2/40-catalog-onboarding.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ The result is a **secure webapp** tile in the IBM Cloud catalog that guides user
3535

3636
You can select a category that matches your deployable architecture. User who browses the catalog can filter by category.
3737
1. Click **Add product**.
38-
1. (Optional) Change the default name for your deployable:
38+
1. (Optional) Change the default name for your product:
3939

4040
1. Click **Edit**.
4141

@@ -69,7 +69,7 @@ In the next few steps, you edit the information that applies to the version.
6969
required_providers {
7070
ibm = {
7171
source = "IBM-Cloud/ibm"
72-
version = "1.54.0"
72+
version = "1.56.1"
7373
}
7474
}
7575
}
@@ -128,6 +128,8 @@ In the **Add deployable architecture details** section, you can add architecture
128128
129129
![](../images/part-2/ee8a02736dedaaec38f6826ef5e454765563da63.png)
130130
131+
1. Add a required caption and description and click **Update**.
132+
131133
1. In the **Step 2 - add prerequisites** pane, leave the input as blank, and click **Next**.
132134
133135
In this step, you can identify prerequisite deployable architectures that must be deployed. However, in this lab, our module deploys the full infrastructure, and you don't need to identify other deployable architectures that are required.
@@ -165,10 +167,10 @@ Before the deployable architecture is published to others to see, it is validate
165167
```
166168
167169
1. In **Step 2 - Input variable**, specify the following parameters:
168-
- `ibmcloud_api_key`: Input the API key that was provided to you
169-
- `region`: Set to eu-gb
170+
- `ibmcloud_api_key`: Untoggle *Use a secret* and input the API key that you generated.
171+
- `region`: Set to `eu-gb`.
170172
- `ssh_key`: Copy and paste the SSH key that was generated in previous step (content of `lab2-catalog-key.pub`).
171-
- `ssh_private_key`: Copy and paste the private key that was generated in previous step (content of `lab2-catalog-key`) in the [heredoc format](https://en.wikipedia.org/wiki/Here_document). You should end up with a string looking like:
173+
- `ssh_private_key`: Untoggle *Use a secret* and copy and paste the private key that was generated in previous step (content of `lab2-catalog-key`) in the [heredoc format](https://en.wikipedia.org/wiki/Here_document). You should end up with a string looking like:
172174
173175
```text
174176
<<EOT

main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
module "landing_zone" {
8-
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone.git//patterns/vsi?ref=v4.5.4"
8+
source = "git::https://github.com/terraform-ibm-modules/terraform-ibm-landing-zone.git//patterns/vsi?ref=v4.6.0"
99
prefix = var.prefix
1010
region = var.region
1111
ibmcloud_api_key = var.ibmcloud_api_key

version.tf

+1-1
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.54.0"
6+
version = "1.56.1"
77
}
88
}
99
}

0 commit comments

Comments
 (0)