Skip to content

Commit 16855f0

Browse files
fix(deps): update dependencies (#147)
Co-authored-by: Jordan <[email protected]>
1 parent 22f1431 commit 16855f0

File tree

12 files changed

+76
-48
lines changed

12 files changed

+76
-48
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ For more information about the Enterprise Application Service product you can re
3030
## Overview
3131
* [terraform-ibm-enterprise-app-java](#terraform-ibm-enterprise-app-java)
3232
* [Examples](./examples)
33-
* <div style="display: inline-block;"><a href="./examples/basic">Basic example</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=eaj-basic-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/basic" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
34-
* <div style="display: inline-block;"><a href="./examples/bdr_complete">Build, deploy and run complete example</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=eaj-bdr_complete-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/bdr_complete" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
35-
* <div style="display: inline-block;"><a href="./examples/dr_complete">Deploy and run complete example</a></div> <div style="display: inline-block; vertical-align: middle;"><a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=eaj-dr_complete-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/dr_complete" target="_blank"><img src="https://cloud.ibm.com/media/docs/images/icons/Deploy_to_cloud.svg" alt="Deploy to IBM Cloud button"></a></div>
33+
:information_source: Ctrl/Cmd+Click or right-click on the Schematics deploy button to open in a new tab
34+
* <a href="./examples/basic">Basic example</a> <a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=enterprise-app-java-basic-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/basic"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom; margin-left: 5px;"></a>
35+
* <a href="./examples/bdr_complete">Build, deploy and run complete example</a> <a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=enterprise-app-java-bdr_complete-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/bdr_complete"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom; margin-left: 5px;"></a>
36+
* <a href="./examples/dr_complete">Deploy and run complete example</a> <a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=enterprise-app-java-dr_complete-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/dr_complete"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom; margin-left: 5px;"></a>
3637
* [Contributing](#contributing)
3738
<!-- END OVERVIEW HOOK -->
3839

examples/basic/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# Basic example
22

3+
<!-- BEGIN SCHEMATICS DEPLOY HOOK -->
4+
<a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=enterprise-app-java-basic-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/basic"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom;"></a>
5+
<!-- END SCHEMATICS DEPLOY HOOK -->
6+
7+
38
A simple example that shows how to provision a basic Enterprise Application Service instance with no configuration.
49

510
The following resources are provisioned by this example:
611
- A new resource group, if an existing one is not passed in.
712
- A new Enterprise Application Service instance in the given resource group on an IBM Cloud account.
13+
14+
<!-- BEGIN SCHEMATICS DEPLOY TIP HOOK -->
15+
:information_source: Ctrl/Cmd+Click or right-click on the Schematics deploy button to open in a new tab
16+
<!-- END SCHEMATICS DEPLOY TIP HOOK -->

examples/basic/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module "resource_group" {
1717
# parsing secret crn to collect the secrets manager ID, the region and the secret ID
1818
module "crn_parser_subid" {
1919
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
20-
version = "1.3.7"
20+
version = "1.4.1"
2121
crn = var.subscription_id_secret_crn
2222
}
2323

examples/bdr_complete/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
# Build, deploy and run complete example
22

3+
<!-- BEGIN SCHEMATICS DEPLOY HOOK -->
4+
<a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=enterprise-app-java-bdr_complete-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/bdr_complete"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom;"></a>
5+
<!-- END SCHEMATICS DEPLOY HOOK -->
6+
7+
38
A Build, deploy and run use-case example to show how to provision an Enterprise Application Service instance by passing application source and configuration repositories as input.
49
In addiction to the two repositories, the example shows how to include the GitHub token with the right permissions to access the repositories: in the example the token is pulled from an IBM Cloud secrets manager instance where it is stored, by passing the secret CRN which is used to extract the Secrets Manager instance, its region and the secretID to pull the secret value
510
Note that the three parameters (repositories and token) are mandatory if any of them is not null.
611

712
The following resources are provisioned by this example:
813
- A new resource group, if an existing one is not passed in.
914
- A new Enterprise Application Service instance in the given resource group on an IBM Cloud account.
15+
16+
<!-- BEGIN SCHEMATICS DEPLOY TIP HOOK -->
17+
:information_source: Ctrl/Cmd+Click or right-click on the Schematics deploy button to open in a new tab
18+
<!-- END SCHEMATICS DEPLOY TIP HOOK -->

examples/bdr_complete/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module "resource_group" {
2222
module "crn_parser_token" {
2323
count = var.repos_git_token_secret_crn != null ? 1 : 0
2424
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
25-
version = "1.3.7"
25+
version = "1.4.1"
2626
crn = var.repos_git_token_secret_crn
2727
}
2828

@@ -46,7 +46,7 @@ locals {
4646
# parsing secret crn to collect the secrets manager ID, the region and the secret ID
4747
module "crn_parser_subid" {
4848
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
49-
version = "1.3.7"
49+
version = "1.4.1"
5050
crn = var.subscription_id_secret_crn
5151
}
5252

examples/dr_complete/README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Deploy and run complete example
22

3+
<!-- BEGIN SCHEMATICS DEPLOY HOOK -->
4+
<a href="https://cloud.ibm.com/schematics/workspaces/create?workspace_name=enterprise-app-java-dr_complete-example&repository=https://github.com/terraform-ibm-modules/terraform-ibm-enterprise-app-java/tree/main/examples/dr_complete"><img src="https://img.shields.io/badge/Deploy%20with IBM%20Cloud%20Schematics-0f62fe?logo=ibm&logoColor=white&labelColor=0f62fe" alt="Deploy with IBM Cloud Schematics" style="height: 16px; vertical-align: text-bottom;"></a>
5+
<!-- END SCHEMATICS DEPLOY HOOK -->
6+
7+
38
A Deploy and run use-case example to show how to provision an Enterprise Application Service instance by passing an already built maven application through its maven repository URL as source repository and the application configuration through the config repository as input parameters.
49
The example sets also the var.source_repo_type input variable to "maven" and the "username" and "password" values to a set of fake values for testing purposes
510
In addiction to the configuration repository, the example shows how to
@@ -10,3 +15,7 @@ Note that the three parameters, maven and configuration repositories and the git
1015
The following resources are provisioned by this example:
1116
- A new resource group, if an existing one is not passed in.
1217
- A new Enterprise Application Service instance in the given resource group on an IBM Cloud account.
18+
19+
<!-- BEGIN SCHEMATICS DEPLOY TIP HOOK -->
20+
:information_source: Ctrl/Cmd+Click or right-click on the Schematics deploy button to open in a new tab
21+
<!-- END SCHEMATICS DEPLOY TIP HOOK -->

examples/dr_complete/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module "resource_group" {
2222
module "crn_parser_token" {
2323
count = var.repos_git_token_secret_crn != null ? 1 : 0
2424
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
25-
version = "1.3.7"
25+
version = "1.4.1"
2626
crn = var.repos_git_token_secret_crn
2727
}
2828

@@ -46,7 +46,7 @@ locals {
4646
# parsing secret crn to collect the secrets manager ID, the region and the secret ID
4747
module "crn_parser_subid" {
4848
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
49-
version = "1.3.7"
49+
version = "1.4.1"
5050
crn = var.subscription_id_secret_crn
5151
}
5252

solutions/fully-configurable/main.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module "resource_group" {
2424
module "crn_parser_token" {
2525
count = var.repos_git_token_secret_crn != null ? 1 : 0
2626
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
27-
version = "1.3.7"
27+
version = "1.4.1"
2828
crn = var.repos_git_token_secret_crn
2929
}
3030

@@ -52,7 +52,7 @@ locals {
5252
module "crn_parser_subid" {
5353
count = var.subscription_id_secret_crn != null ? 1 : 0
5454
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
55-
version = "1.3.7"
55+
version = "1.4.1"
5656
crn = var.subscription_id_secret_crn
5757
}
5858

@@ -122,7 +122,7 @@ data "ibm_iam_account_settings" "provider_account" {}
122122
module "crn_parser_mq_capacity_instance_crn" {
123123
count = var.mq_capacity_s2s_policy_target_crn != null ? 1 : 0
124124
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
125-
version = "1.3.7"
125+
version = "1.4.1"
126126
crn = var.mq_capacity_s2s_policy_target_crn
127127
}
128128

@@ -224,7 +224,7 @@ resource "ibm_iam_authorization_policy" "mq_s2s_policy_account_scope" {
224224
module "crn_parser_db2_instance_crn" {
225225
count = var.db2_s2s_policy_target_crn != null ? 1 : 0
226226
source = "terraform-ibm-modules/common-utilities/ibm//modules/crn-parser"
227-
version = "1.3.7"
227+
version = "1.4.1"
228228
crn = var.db2_s2s_policy_target_crn
229229
}
230230

solutions/fully-configurable/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.86.1"
6+
version = "1.87.2"
77
}
88
time = {
99
source = "hashicorp/time"

0 commit comments

Comments
 (0)