Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions examples/enterprise/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module "scc_wp" {
# Create Trusted profile for SCC Workload Protection instance
module "trusted_profile_scc_wp" {
source = "terraform-ibm-modules/trusted-profile/ibm"
version = "2.1.1"
version = "2.3.0"
trusted_profile_name = "${var.prefix}-scc-wp-profile"
trusted_profile_description = "Trusted Profile for SCC-WP to access App Config and enterprise"

Expand Down Expand Up @@ -68,7 +68,7 @@ module "trusted_profile_scc_wp" {
# Create new App Config instance
module "app_config" {
source = "terraform-ibm-modules/app-configuration/ibm"
version = "1.3.0"
version = "1.5.0"
region = var.region
resource_group_id = module.resource_group.resource_group_id
app_config_name = "${var.prefix}-app-config"
Expand All @@ -78,7 +78,7 @@ module "app_config" {
# Create trusted profile for App Config instance
module "trusted_profile_app_config_general" {
source = "terraform-ibm-modules/trusted-profile/ibm"
version = "2.1.1"
version = "2.3.0"
trusted_profile_name = "${var.prefix}-app-config-general-profile"
trusted_profile_description = "Trusted Profile for App Config general permissions"

Expand Down Expand Up @@ -130,7 +130,7 @@ resource "ibm_iam_custom_role" "template_assignment_reader" {
# Trusted Profile for App Config enterprise-level permissions
module "trusted_profile_app_config_enterprise" {
source = "terraform-ibm-modules/trusted-profile/ibm"
version = "2.1.1"
version = "2.3.0"
trusted_profile_name = "${var.prefix}-app-config-enterprise-profile"
trusted_profile_description = "Trusted Profile for App Config to manage IAM templates"

Expand Down Expand Up @@ -172,7 +172,7 @@ module "trusted_profile_app_config_enterprise" {

module "trusted_profile_template" {
source = "terraform-ibm-modules/trusted-profile/ibm//modules/trusted-profile-template"
version = "2.1.1"
version = "2.3.0"
template_name = "Trusted Profile Template for SCC-WP-${var.prefix}"
template_description = "IAM trusted profile template to onboard accounts for CSPM"
profile_name = "Trusted Profile for IBM Cloud CSPM in SCC-WP-${var.prefix}"
Expand Down