From 8cf32de4f5cd3beb35feb9a32f60c617f3c6523c Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Mon, 21 Jul 2025 13:46:51 +0530 Subject: [PATCH 01/32] feat: Quickstart OCP DA --- solutions/quickstart/README.md | 0 solutions/quickstart/main.tf | 144 ++++++++++++++++++++++++++++++ solutions/quickstart/outputs.tf | 0 solutions/quickstart/provider.tf | 6 ++ solutions/quickstart/variables.tf | 95 ++++++++++++++++++++ solutions/quickstart/version.tf | 11 +++ 6 files changed, 256 insertions(+) create mode 100644 solutions/quickstart/README.md create mode 100644 solutions/quickstart/main.tf create mode 100644 solutions/quickstart/outputs.tf create mode 100644 solutions/quickstart/provider.tf create mode 100644 solutions/quickstart/variables.tf create mode 100644 solutions/quickstart/version.tf diff --git a/solutions/quickstart/README.md b/solutions/quickstart/README.md new file mode 100644 index 00000000..e69de29b diff --git a/solutions/quickstart/main.tf b/solutions/quickstart/main.tf new file mode 100644 index 00000000..8fffea76 --- /dev/null +++ b/solutions/quickstart/main.tf @@ -0,0 +1,144 @@ +####################################################################################################################### +# Resource Group +####################################################################################################################### +module "resource_group" { + source = "terraform-ibm-modules/resource-group/ibm" + version = "1.2.1" + existing_resource_group_name = var.existing_resource_group_name +} + +locals { + prefix = var.prefix != null ? trimspace(var.prefix) != "" ? "${var.prefix}-" : "" : "" + cluster_name = "${local.prefix}${var.cluster_name}" +} + +######################################################################################################################## +# VPC + Subnet + Public Gateway +######################################################################################################################## +locals { + octets = split(".", split("/", var.address_prefix)[0]) + mask = split("/", var.address_prefix)[1] + subnets = { + for count in range(1, 4) : + "zone-${count}" => count <= local.selected.zones ? [ + { + name = "${local.prefix}subnet-${count}" + cidr = format( + "%d.%d.%d.0/%s", + tonumber(local.octets[0]), + tonumber(local.octets[1]) + (count - 1) * 10, + tonumber(local.octets[2]), + local.mask + ) + public_gateway = true + acl_name = "${var.prefix}-acl" + } + ] : [] + } + + public_gateway = { + for count in range(1, 4) : + "zone-${count}" => count <= local.selected.zones + } + + network_acl = { + name = "${local.prefix}acl" + add_ibm_cloud_internal_rules = true + add_vpc_connectivity_rules = true + prepend_ibm_rules = true + rules = [{ + name = "${local.prefix}inbound" + action = "allow" + source = "0.0.0.0/0" + destination = "0.0.0.0/0" + direction = "inbound" + }, + { + name = "${local.prefix}outbound" + action = "allow" + source = "0.0.0.0/0" + destination = "0.0.0.0/0" + direction = "outbound" + } + ] + } +} + +module "vpc" { + source = "terraform-ibm-modules/landing-zone-vpc/ibm" + version = "7.25.10" + resource_group_id = module.resource_group.resource_group_id + region = var.region + name = "${local.prefix}vpc" + prefix = var.prefix + subnets = local.subnets + network_acls = [local.network_acl] + use_public_gateways = local.public_gateway +} + +locals { + size_config = { + mini = { + flavor = "bx2.4x16" + workers_per_zone = 2 + zones = 2 + + } + small = { + flavor = "bx2.8x32" + workers_per_zone = 3 + zones = 3 + } + medium = { + flavor = "bx2.8x32" + workers_per_zone = 5 + zones = 3 + } + large = { + flavor = "bx2.16x64" + workers_per_zone = 7 + zones = 3 + } + } + + selected = lookup(local.size_config, var.size, local.size_config["mini"]) + + worker_pools = concat( + [ + { + subnet_prefix = "zone-1" + pool_name = "default" # Exactly 'default' here + machine_type = local.selected.flavor + workers_per_zone = local.selected.workers_per_zone + operating_system = var.default_worker_pool_operating_system + } + ], + [ + for count in range(2, local.selected.zones + 1) : { + subnet_prefix = "zone-${count}" + pool_name = "default-${count}" + machine_type = local.selected.flavor + workers_per_zone = local.selected.workers_per_zone + operating_system = var.default_worker_pool_operating_system + } + ] + ) +} + +######################################################################################################################## +# OCP VPC cluster (single zone) +######################################################################################################################## +module "ocp_base" { + source = "../../" + cluster_name = local.cluster_name + resource_group_id = module.resource_group.resource_group_id + region = var.region + ocp_version = var.ocp_version + ocp_entitlement = var.ocp_entitlement + vpc_id = module.vpc.vpc_id + vpc_subnets = module.vpc.subnet_detail_map + worker_pools = local.worker_pools + disable_outbound_traffic_protection = true + access_tags = var.access_tags + disable_public_endpoint = true +} diff --git a/solutions/quickstart/outputs.tf b/solutions/quickstart/outputs.tf new file mode 100644 index 00000000..e69de29b diff --git a/solutions/quickstart/provider.tf b/solutions/quickstart/provider.tf new file mode 100644 index 00000000..146dea97 --- /dev/null +++ b/solutions/quickstart/provider.tf @@ -0,0 +1,6 @@ +provider "ibm" { + ibmcloud_api_key = var.ibmcloud_api_key + region = var.region + visibility = var.provider_visibility + private_endpoint_type = (var.provider_visibility == "private" && var.region == "ca-mon") ? "vpe" : null +} diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf new file mode 100644 index 00000000..18454a0c --- /dev/null +++ b/solutions/quickstart/variables.tf @@ -0,0 +1,95 @@ + +variable "ibmcloud_api_key" { + type = string + description = "The IBM Cloud API key." + sensitive = true +} +variable "existing_resource_group_name" { + type = string + description = "Name of the existing resource group. Required if not creating new resource group" + default = "Default" +} +variable "provider_visibility" { + description = "Set the visibility value for the IBM terraform provider. Supported values are `public`, `private`, `public-and-private`. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/guides/custom-service-endpoints)." + type = string + default = "public" + + validation { + condition = contains(["public", "private", "public-and-private"], var.provider_visibility) + error_message = "Invalid visibility option. Allowed values are 'public', 'private', or 'public-and-private'." + } +} +variable "prefix" { + type = string + description = "The prefix to be added to all resources created by this solution. To skip using a prefix, set this value to null or an empty string. The prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It should not exceed 16 characters, must not end with a hyphen('-'), and cannot contain consecutive hyphens ('--'). Example: `prod-0205-ocpqs`." + nullable = true + validation { + condition = (var.prefix == null || var.prefix == "" ? true : + alltrue([ + can(regex("^[a-z][-a-z0-9]*[a-z0-9]$", var.prefix)), + length(regexall("--", var.prefix)) == 0 + ]) + ) + error_message = "Prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It must not end with a hyphen('-'), and cannot contain consecutive hyphens ('--')." + } + validation { + condition = length(var.prefix) <= 16 + error_message = "Prefix must not exceed 16 characters." + } +} +variable "region" { + type = string + description = "Region in which all the resources will be deployed. [Learn More](https://terraform-ibm-modules.github.io/documentation/#/region)." + default = "us-south" +} +variable "ocp_version" { + type = string + description = "The version of the OpenShift cluster." + default = "4.17" + + validation { + condition = anytrue([ + var.ocp_version == null, + var.ocp_version == "default", + var.ocp_version == "4.18", + var.ocp_version == "4.15", + var.ocp_version == "4.16", + var.ocp_version == "4.17", + ]) + error_message = "The specified ocp_version is not of the valid versions." + } +} +variable "cluster_name" { + type = string + description = "Name of new IBM Cloud OpenShift Cluster" + default = "ocp-qs" +} +variable "address_prefix" { + description = "The IP range that will be defined for the VPC for a certain location. Use only with manual address prefixes." + type = string + default = "10.10.10.0/24" +} + +variable "ocp_entitlement" { + type = string + description = "Value that is applied to the entitlements for OCP cluster provisioning" + default = null +} + + +variable "default_worker_pool_operating_system" { + type = string + description = "Provide the operating system for the worker nodes in the default worker pool. [Learn more](https://cloud.ibm.com/docs/openshift?topic=openshift-ai-addon-install&interface=ui#ai-min)" + default = "RHCOS" +} +variable "access_tags" { + type = list(string) + description = "A list of access tags to apply to the resources created by the module." + default = [] +} + +variable "size" { + type = string + description = "A list of access tags to apply to the resources created by the module." + default = "mini" +} diff --git a/solutions/quickstart/version.tf b/solutions/quickstart/version.tf new file mode 100644 index 00000000..deba0ac1 --- /dev/null +++ b/solutions/quickstart/version.tf @@ -0,0 +1,11 @@ +terraform { + required_version = ">=1.9.0" + + # Lock DA into an exact provider version - renovate automation will keep it updated + required_providers { + ibm = { + source = "IBM-Cloud/ibm" + version = "1.80.3" + } + } +} From 1c1d39c34fc41391b277f3fea7998557901c6f66 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Tue, 22 Jul 2025 08:11:28 +0530 Subject: [PATCH 02/32] Updated catalog,variables.tf,main.tf,pr_test.go --- .secrets.baseline | 4 +- ibm_catalog.json | 216 ++++++++++++++++++ ...deployable-architecture-ocp-cluster-qs.svg | 4 + solutions/quickstart/README.md | 3 + solutions/quickstart/main.tf | 5 +- solutions/quickstart/variables.tf | 41 ++-- tests/pr_test.go | 45 ++++ 7 files changed, 295 insertions(+), 23 deletions(-) create mode 100644 reference-architecture/deployable-architecture-ocp-cluster-qs.svg diff --git a/.secrets.baseline b/.secrets.baseline index a262313b..9e22a259 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -3,7 +3,7 @@ "files": "go.sum|^.secrets.baseline$", "lines": null }, - "generated_at": "2025-05-14T17:28:16Z", + "generated_at": "2025-07-22T02:37:17Z", "plugins_used": [ { "name": "AWSKeyDetector" @@ -82,7 +82,7 @@ "hashed_secret": "8196b86ede820e665b2b8af9c648f4996be99838", "is_secret": false, "is_verified": false, - "line_number": 65, + "line_number": 66, "type": "Secret Keyword", "verified_result": null } diff --git a/ibm_catalog.json b/ibm_catalog.json index 6cb79c06..9c506645 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -956,6 +956,222 @@ ], "dependency_version_2": true, "terraform_version": "1.10.5" + }, + { + "label": "[Experimental] Quickstart", + "name": "quickstart", + "index": 2, + "install_type": "fullstack", + "working_directory": "solutions/quickstart", + "compliance": { + "authority": "scc-v3", + "profiles": [ + { + "profile_name": "IBM Cloud Framework for Financial Services", + "profile_version": "1.7.0" + } + ] + }, + "iam_permissions": [ + { + "service_name": "containers-kubernetes", + "role_crns": [ + "crn:v1:bluemix:public:iam::::serviceRole:Manager", + "crn:v1:bluemix:public:iam::::role:Administrator" + ], + "notes": "Required to create and edit OpenShift cluster and the related resources." + }, + { + "service_name": "iam-identity", + "role_crns": [ + "crn:v1:bluemix:public:iam::::role:Administrator", + "crn:v1:bluemix:public:iam-identity::::serviceRole:UserApiKeyCreator" + ], + "notes": "Required to create the containers-kubernetes-key needed by the OpenShift cluster on IBM Cloud." + }, + { + "service_name": "is.vpc", + "role_crns": [ + "crn:v1:bluemix:public:iam::::role:Administrator" + ], + "notes": "Required for creating Virtual Private Cloud(VPC)." + }, + { + "service_name": "cloud-object-storage", + "role_crns": [ + "crn:v1:bluemix:public:iam::::serviceRole:Manager", + "crn:v1:bluemix:public:iam::::role:Editor" + ], + "notes": "Required to create Cloud Object Storage (COS) Instance." + } + ], + "architecture": { + "features": [ + { + "title": " ", + "description": "Configured to use IBM secure by default standards, but can be edited to fit your use case." + } + ], + "diagrams": [ + { + "diagram": { + "caption": "Red Hat OpenShift cluster topology - Quickstart", + "url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/refs/heads/main/reference-architecture/deployable-architecture-ocp-cluster.svg", + "type": "image/svg+xml" + }, + "description": "This QuickStart Deployable Architecture enables single-click deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC) using a single monolithic Terraform configuration. It provisions both the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup.

Users can select from predefined cluster sizes — mini (default), small, medium, and large — each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor) accordingly. The machine type defines the CPU, memory, and disk capacity of worker nodes, directly shaping the cluster’s performance and capacity.

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster, ensuring seamless storage integration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with IBM Cloud’s proven infrastructure, integrated storage services, and right-sized compute resources." + } + ] + }, + "configuration": [ + { + "key": "ibmcloud_api_key" + }, + { + "key": "existing_resource_group_name", + "required":true, + "display_name": "resource_group", + "custom_config": { + "type": "resource_group", + "grouping": "deployment", + "original_grouping": "deployment", + "config_constraints": { + "identifier": "rg_name" + } + } + }, + { + "key": "prefix", + "required": true + }, + { + "key": "region", + "required": true, + "type": "string", + "custom_config": { + "config_constraints": { + "generationType": "2" + }, + "grouping": "deployment", + "original_grouping": "deployment", + "type": "vpc_region" + } + }, + { + "key": "size", + "required": true, + "options": [ + { + "displayname": "mini", + "value": "mini" + }, + { + "displayname": "small", + "value": "small" + }, + { + "displayname": "medium", + "value": "medium" + }, + { + "displayname": "large", + "value": "large" + } + ] + }, + { + "key": "provider_visibility", + "options": [ + { + "displayname": "private", + "value": "private" + }, + { + "displayname": "public", + "value": "public" + }, + { + "displayname": "public-and-private", + "value": "public-and-private" + } + ], + "hidden": true + }, + { + "key": "cluster_name", + "hidden":true + }, + { + "key": "ocp_version", + "display_name": "openshift_version", + "options": [ + { + "displayname": "4.18", + "value": "4.18" + }, + { + "displayname": "4.17", + "value": "4.17" + }, + { + "displayname": "4.16", + "value": "4.16" + }, + { + "displayname": "4.15", + "value": "4.15" + }, + { + "displayname": "4.14", + "value": "4.14" + } + ] + }, + { + "key": "default_worker_pool_operating_system", + "hidden": true, + "options": [ + { + "displayname": "RHEL 9", + "value": "RHEL_9_64" + }, + { + "displayname": "Red Hat CoreOS", + "value": "RHCOS" + }, + { + "displayname": "RHEL 8", + "value": "REDHAT_8_64" + } + ] + }, + { + "key": "address_prefix", + "hidden":true + }, + { + "key": "ocp_entitlement", + "hidden":true + }, + { + "key": "access_tags", + "hidden":true, + "custom_config": { + "type": "array", + "grouping": "deployment", + "original_grouping": "deployment", + "config_constraints": { + "type": "string" + } + } + }, + { + "key": "disable_public_endpoint" + }, + { + "key": "disable_outbound_traffic_protection" + } + ] } ] } diff --git a/reference-architecture/deployable-architecture-ocp-cluster-qs.svg b/reference-architecture/deployable-architecture-ocp-cluster-qs.svg new file mode 100644 index 00000000..0e1e8fe1 --- /dev/null +++ b/reference-architecture/deployable-architecture-ocp-cluster-qs.svg @@ -0,0 +1,4 @@ + + + +
ACL
locked
IBM Cloud
Region
Resource GroupVPCOpenShift
Zone 2
Zone 1
Worker NodeWorker Node
Worker Pool
Registry Bucket
           Cloud Object Storage 
\ No newline at end of file diff --git a/solutions/quickstart/README.md b/solutions/quickstart/README.md index e69de29b..1b55d5e0 100644 --- a/solutions/quickstart/README.md +++ b/solutions/quickstart/README.md @@ -0,0 +1,3 @@ +# Cloud automation for Red Hat OpenShift Container Platform on VPC (Quickstart) + +:exclamation: **Important:** This solution is not intended to be called by other modules because it contains a provider configuration and is not compatible with the `for_each`, `count`, and `depends_on` arguments. For more information, see [Providers Within Modules](https://developer.hashicorp.com/terraform/language/modules/develop/providers). diff --git a/solutions/quickstart/main.tf b/solutions/quickstart/main.tf index 8fffea76..304ca7bf 100644 --- a/solutions/quickstart/main.tf +++ b/solutions/quickstart/main.tf @@ -18,6 +18,7 @@ locals { locals { octets = split(".", split("/", var.address_prefix)[0]) mask = split("/", var.address_prefix)[1] + subnets = { for count in range(1, 4) : "zone-${count}" => count <= local.selected.zones ? [ @@ -138,7 +139,7 @@ module "ocp_base" { vpc_id = module.vpc.vpc_id vpc_subnets = module.vpc.subnet_detail_map worker_pools = local.worker_pools - disable_outbound_traffic_protection = true + disable_outbound_traffic_protection = var.disable_outbound_traffic_protection access_tags = var.access_tags - disable_public_endpoint = true + disable_public_endpoint = var.disable_public_endpoint } diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index 18454a0c..3b0477cd 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -6,7 +6,7 @@ variable "ibmcloud_api_key" { } variable "existing_resource_group_name" { type = string - description = "Name of the existing resource group. Required if not creating new resource group" + description = "The name of an existing resource group to provision the cluster." default = "Default" } variable "provider_visibility" { @@ -44,26 +44,16 @@ variable "region" { } variable "ocp_version" { type = string - description = "The version of the OpenShift cluster." + description = "Version of the OpenShift cluster to provision." default = "4.17" - - validation { - condition = anytrue([ - var.ocp_version == null, - var.ocp_version == "default", - var.ocp_version == "4.18", - var.ocp_version == "4.15", - var.ocp_version == "4.16", - var.ocp_version == "4.17", - ]) - error_message = "The specified ocp_version is not of the valid versions." - } } + variable "cluster_name" { type = string - description = "Name of new IBM Cloud OpenShift Cluster" - default = "ocp-qs" + description = "The name of the new IBM Cloud OpenShift Cluster. If a `prefix` input variable is specified, it is added to this name in the `-value` format." + default = "openshift-qs" } + variable "address_prefix" { description = "The IP range that will be defined for the VPC for a certain location. Use only with manual address prefixes." type = string @@ -79,9 +69,10 @@ variable "ocp_entitlement" { variable "default_worker_pool_operating_system" { type = string - description = "Provide the operating system for the worker nodes in the default worker pool. [Learn more](https://cloud.ibm.com/docs/openshift?topic=openshift-ai-addon-install&interface=ui#ai-min)" - default = "RHCOS" + description = "The operating system installed on the worker nodes. [Learn more](https://cloud.ibm.com/docs/openshift?topic=openshift-vpc-flavors)" + default = "RHEL_9_64" } + variable "access_tags" { type = list(string) description = "A list of access tags to apply to the resources created by the module." @@ -90,6 +81,18 @@ variable "access_tags" { variable "size" { type = string - description = "A list of access tags to apply to the resources created by the module." + description = "Defines the cluster size and capacity. Valid options are `mini`, `small`, `medium`, and `large`. This setting determines the number of availability zones, worker nodes per zone, and the machine type used for the OpenShift cluster." default = "mini" } + +variable "disable_public_endpoint" { + type = bool + description = "Whether access to the public service endpoint is disabled when the cluster is created. Does not affect existing clusters. You can't disable a public endpoint on an existing cluster, so you can't convert a public cluster to a private cluster. To change a public endpoint to private, create another cluster with this input set to `true`." + default = false +} + +variable "disable_outbound_traffic_protection" { + type = bool + description = "Whether to allow public outbound access from the cluster workers. This is only applicable for OCP 4.15 and later." + default = true +} diff --git a/tests/pr_test.go b/tests/pr_test.go index 6a82bd11..a772d589 100644 --- a/tests/pr_test.go +++ b/tests/pr_test.go @@ -23,6 +23,7 @@ import ( const fullyConfigurableTerraformDir = "solutions/fully-configurable" const customsgExampleDir = "examples/custom_sg" +const quickStartTerraformDir = "solutions/quickstart" // Define a struct with fields that match the structure of the YAML data const yamlLocation = "../common-dev-assets/common-go-assets/common-permanent-resources.yaml" @@ -83,6 +84,28 @@ func setupTerraform(t *testing.T, prefix, realTerraformDir string) *terraform.Op return existingTerraformOptions } +func setupQuickstartOptions(t *testing.T, prefix string) *testschematic.TestSchematicOptions { + options := testschematic.TestSchematicOptionsDefault(&testschematic.TestSchematicOptions{ + Testing: t, + Prefix: prefix, + TarIncludePatterns: []string{ + "*.tf", + quickStartTerraformDir + "/*.tf", + }, + TemplateFolder: quickStartTerraformDir, + Tags: []string{"test-schematic"}, + DeleteWorkspaceOnFail: false, + WaitJobCompleteMinutes: 360, + }) + options.TerraformVars = []testschematic.TestSchematicTerraformVar{ + {Name: "ibmcloud_api_key", Value: options.RequiredEnvironmentVars["TF_VAR_ibmcloud_api_key"], DataType: "string", Secure: true}, + {Name: "prefix", Value: options.Prefix, DataType: "string"}, + {Name: "region", Value: "us-south", DataType: "string"}, + {Name: "existing_resource_group_name", Value: resourceGroup, DataType: "string"}, + {Name: "size", Value: "mini", DataType: "string"}, + } + return options +} func cleanupTerraform(t *testing.T, options *terraform.Options, prefix string) { if t.Failed() && strings.ToLower(os.Getenv("DO_NOT_DESTROY_ON_FAILURE")) == "true" { @@ -192,3 +215,25 @@ func TestRunCustomsgExample(t *testing.T) { assert.Nil(t, err, "This should not have errored") assert.NotNil(t, output, "Expected some output") } + +/******************************************************************* +* TESTS FOR THE TERRAFORM BASED QUICKSTART DEPLOYABLE ARCHITECTURE * +********************************************************************/ +func TestRunQuickstartSchematics(t *testing.T) { + t.Parallel() + + options := setupQuickstartOptions(t, "ocp-qs") + err := options.RunSchematicTest() + assert.Nil(t, err, "This should not have errored") +} + +// Upgrade test for the Quickstart DA +func TestRunQuickstartUpgradeSchematics(t *testing.T) { + t.Parallel() + + options := setupQuickstartOptions(t, "ocp-qs-upg") + err := options.RunSchematicUpgradeTest() + if !options.UpgradeTestSkipped { + assert.Nil(t, err, "This should not have errored") + } +} From 031140fca139f7b1751a46ff13370ee3f605461d Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Tue, 22 Jul 2025 08:44:58 +0530 Subject: [PATCH 03/32] Added catalogValidationValues.json.template --- .catalog-onboard-pipeline.yaml | 3 +++ solutions/quickstart/catalogValidationValues.json.template | 5 +++++ solutions/quickstart/variables.tf | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 solutions/quickstart/catalogValidationValues.json.template diff --git a/.catalog-onboard-pipeline.yaml b/.catalog-onboard-pipeline.yaml index f1fbee85..3110933e 100644 --- a/.catalog-onboard-pipeline.yaml +++ b/.catalog-onboard-pipeline.yaml @@ -15,3 +15,6 @@ offerings: instance_id: 1c7d5f78-9262-44c3-b779-b28fe4d88c37 region: us-south scope_resource_group_var_name: existing_resource_group_name + - name: quickstart + mark_ready: true + install_type: fullstack diff --git a/solutions/quickstart/catalogValidationValues.json.template b/solutions/quickstart/catalogValidationValues.json.template new file mode 100644 index 00000000..f228f858 --- /dev/null +++ b/solutions/quickstart/catalogValidationValues.json.template @@ -0,0 +1,5 @@ +{ + "ibmcloud_api_key": $VALIDATION_APIKEY, + "prefix": $PREFIX, + "size": "mini" +} diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index 3b0477cd..db2f5efe 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -12,7 +12,7 @@ variable "existing_resource_group_name" { variable "provider_visibility" { description = "Set the visibility value for the IBM terraform provider. Supported values are `public`, `private`, `public-and-private`. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/guides/custom-service-endpoints)." type = string - default = "public" + default = "private" validation { condition = contains(["public", "private", "public-and-private"], var.provider_visibility) From a0d27db19ae7dd7675c70df27361737c28e3b47b Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Tue, 22 Jul 2025 15:45:50 +0530 Subject: [PATCH 04/32] fix: Resolved pipeline error --- log.txt | 2940 +++++++++++++++++++++++++++++ solutions/quickstart/variables.tf | 2 +- tests/pr_test.go | 5 +- 3 files changed, 2944 insertions(+), 3 deletions(-) create mode 100644 log.txt diff --git a/log.txt b/log.txt new file mode 100644 index 00000000..73b385cf --- /dev/null +++ b/log.txt @@ -0,0 +1,2940 @@ +cd tests && go test -run TestRunCustomsgExample -count=1 -v -timeout 600m +=== RUN TestRunCustomsgExample +=== PAUSE TestRunCustomsgExample +=== CONT TestRunCustomsgExample +2025/07/22 12:45:21 Region au-syd VPC count: 6 +2025/07/22 12:45:21 --- new best region is au-syd +2025/07/22 12:45:25 Region ca-tor VPC count: 9 +2025/07/22 12:45:29 Region br-sao VPC count: 6 +2025/07/22 12:45:34 Region eu-de VPC count: 9 +2025/07/22 12:45:38 Region eu-es VPC count: 10 +2025/07/22 12:45:43 Region eu-gb VPC count: 7 +2025/07/22 12:45:47 Region us-east VPC count: 18 +2025/07/22 12:45:50 Region us-south VPC count: 27 +2025/07/22 12:45:56 Region jp-osa VPC count: 4 +2025/07/22 12:45:56 --- new best region is jp-osa +2025/07/22 12:45:59 Region jp-tok VPC count: 7 +2025/07/22 12:45:59 Best region was found!: jp-osa +TestRunCustomsgExample 2025-07-22T12:45:59+05:30 tests.go:75: TEMP CREATED: /var/folders/vh/syq93zks0k38v_dhpnypz4hm0000gn/T/terraform-base-ocp-customsg-fs51954832040 +TestRunCustomsgExample 2025-07-22T12:45:59+05:30 tests.go:582: START: Init / Apply / Consistency Check +TestRunCustomsgExample 2025-07-22T12:45:59+05:30 tests.go:661: START: Init / Apply +TestRunCustomsgExample 2025-07-22T12:45:59+05:30 retry.go:91: terraform [init -upgrade=true] +TestRunCustomsgExample 2025-07-22T12:45:59+05:30 logger.go:67: Running command terraform with args [init -upgrade=true] +TestRunCustomsgExample 2025-07-22T12:45:59+05:30 logger.go:67: Initializing the backend... +TestRunCustomsgExample 2025-07-22T12:45:59+05:30 logger.go:67: Upgrading modules... +TestRunCustomsgExample 2025-07-22T12:46:00+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/security-group/ibm 2.7.0 for custom_sg... +TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - custom_sg in .terraform/modules/custom_sg +TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - ocp_base in ../.. +TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/security-group/ibm 2.7.0 for ocp_base.attach_sg_to_api_vpe... +TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - ocp_base.attach_sg_to_api_vpe in .terraform/modules/ocp_base.attach_sg_to_api_vpe +TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/security-group/ibm 2.7.0 for ocp_base.attach_sg_to_lb... +TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - ocp_base.attach_sg_to_lb in .terraform/modules/ocp_base.attach_sg_to_lb +TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/security-group/ibm 2.7.0 for ocp_base.attach_sg_to_master_vpe... +TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - ocp_base.attach_sg_to_master_vpe in .terraform/modules/ocp_base.attach_sg_to_master_vpe +TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/security-group/ibm 2.7.0 for ocp_base.attach_sg_to_registry_vpe... +TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - ocp_base.attach_sg_to_registry_vpe in .terraform/modules/ocp_base.attach_sg_to_registry_vpe +TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/cbr/ibm 1.32.4 for ocp_base.cbr_rule... +TestRunCustomsgExample 2025-07-22T12:46:06+05:30 logger.go:67: - ocp_base.cbr_rule in .terraform/modules/ocp_base.cbr_rule/modules/cbr-rule-module +TestRunCustomsgExample 2025-07-22T12:46:06+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/cos/ibm 8.21.25 for ocp_base.cos_instance... +TestRunCustomsgExample 2025-07-22T12:46:09+05:30 logger.go:67: - ocp_base.cos_instance in .terraform/modules/ocp_base.cos_instance +TestRunCustomsgExample 2025-07-22T12:46:09+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/cbr/ibm 1.31.0 for ocp_base.cos_instance.bucket_cbr_rule... +TestRunCustomsgExample 2025-07-22T12:46:12+05:30 logger.go:67: - ocp_base.cos_instance.bucket_cbr_rule in .terraform/modules/ocp_base.cos_instance.bucket_cbr_rule/modules/cbr-rule-module +TestRunCustomsgExample 2025-07-22T12:46:12+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/cbr/ibm 1.31.0 for ocp_base.cos_instance.instance_cbr_rule... +TestRunCustomsgExample 2025-07-22T12:46:12+05:30 logger.go:67: - ocp_base.cos_instance.instance_cbr_rule in .terraform/modules/ocp_base.cos_instance.instance_cbr_rule/modules/cbr-rule-module +TestRunCustomsgExample 2025-07-22T12:46:12+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/common-utilities/ibm 1.2.0 for ocp_base.existing_secrets_manager_instance_parser... +TestRunCustomsgExample 2025-07-22T12:46:15+05:30 logger.go:67: - ocp_base.existing_secrets_manager_instance_parser in .terraform/modules/ocp_base.existing_secrets_manager_instance_parser/modules/crn-parser +TestRunCustomsgExample 2025-07-22T12:46:15+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/resource-group/ibm 1.2.1 for resource_group... +TestRunCustomsgExample 2025-07-22T12:46:17+05:30 logger.go:67: - resource_group in .terraform/modules/resource_group +TestRunCustomsgExample 2025-07-22T12:46:17+05:30 logger.go:67: Initializing provider plugins... +TestRunCustomsgExample 2025-07-22T12:46:17+05:30 logger.go:67: - Finding ibm-cloud/ibm versions matching ">= 1.59.0, >= 1.70.0, >= 1.76.0, >= 1.78.2, >= 1.79.0, < 2.0.0"... +TestRunCustomsgExample 2025-07-22T12:46:17+05:30 logger.go:67: - Finding hashicorp/time versions matching ">= 0.9.1, < 1.0.0"... +TestRunCustomsgExample 2025-07-22T12:46:18+05:30 logger.go:67: - Finding hashicorp/null versions matching ">= 3.2.1, < 4.0.0"... +TestRunCustomsgExample 2025-07-22T12:46:18+05:30 logger.go:67: - Finding hashicorp/kubernetes versions matching ">= 2.16.1, < 3.0.0"... +TestRunCustomsgExample 2025-07-22T12:46:18+05:30 logger.go:67: - Finding hashicorp/random versions matching ">= 3.5.1, < 4.0.0"... +TestRunCustomsgExample 2025-07-22T12:46:20+05:30 logger.go:67: - Installing ibm-cloud/ibm v1.80.4... +TestRunCustomsgExample 2025-07-22T12:46:23+05:30 logger.go:67: - Installed ibm-cloud/ibm v1.80.4 (self-signed, key ID AAD3B791C49CC253) +TestRunCustomsgExample 2025-07-22T12:46:23+05:30 logger.go:67: - Installing hashicorp/time v0.13.1... +TestRunCustomsgExample 2025-07-22T12:46:24+05:30 logger.go:67: - Installed hashicorp/time v0.13.1 (signed by HashiCorp) +TestRunCustomsgExample 2025-07-22T12:46:24+05:30 logger.go:67: - Installing hashicorp/null v3.2.4... +TestRunCustomsgExample 2025-07-22T12:46:24+05:30 logger.go:67: - Installed hashicorp/null v3.2.4 (signed by HashiCorp) +TestRunCustomsgExample 2025-07-22T12:46:24+05:30 logger.go:67: - Installing hashicorp/kubernetes v2.38.0... +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: - Installed hashicorp/kubernetes v2.38.0 (signed by HashiCorp) +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: - Installing hashicorp/random v3.7.2... +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: - Installed hashicorp/random v3.7.2 (signed by HashiCorp) +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: Partner and community providers are signed by their developers. +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: If you'd like to know more about provider signing, you can read about it here: +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: https://www.terraform.io/docs/cli/plugins/signing.html +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: Terraform has created a lock file .terraform.lock.hcl to record the provider +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: selections it made above. Include this file in your version control repository +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: so that Terraform can guarantee to make the same selections by default when +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: you run "terraform init" in the future. +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: Terraform has been successfully initialized! +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67:  +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: You may now begin working with Terraform. Try running "terraform plan" to see +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: any changes that are required for your infrastructure. All Terraform commands +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: should now work. +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: If you ever set or change modules or backend configuration for Terraform, +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: rerun this command to reinitialize your working directory. If you forget, other +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: commands will detect it and remind you to do so if necessary. +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 retry.go:91: terraform [apply -input=false -auto-approve -var ocp_version=4.17 -var access_tags=["geretain-dev:permanent-test-tag-1", "geretain-dev-1:permanent-test-tag-4"] -var ocp_entitlement=cloud_pak -var prefix=base-ocp-customsg-fs5 -var region=jp-osa -var resource_group=geretain-test-base-ocp-vpc -var resource_tags=[] -lock=false] +TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: Running command terraform with args [apply -input=false -auto-approve -var ocp_version=4.17 -var access_tags=["geretain-dev:permanent-test-tag-1", "geretain-dev-1:permanent-test-tag-4"] -var ocp_entitlement=cloud_pak -var prefix=base-ocp-customsg-fs5 -var region=jp-osa -var resource_group=geretain-test-base-ocp-vpc -var resource_tags=[] -lock=false] +TestRunCustomsgExample 2025-07-22T12:46:31+05:30 logger.go:67: module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Reading... +TestRunCustomsgExample 2025-07-22T12:46:31+05:30 logger.go:67: module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Reading... +TestRunCustomsgExample 2025-07-22T12:46:31+05:30 logger.go:67: module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Reading... +TestRunCustomsgExample 2025-07-22T12:46:31+05:30 logger.go:67: module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Read complete after 0s [id=2025-07-22 07:16:31.227899 +0000 UTC] +TestRunCustomsgExample 2025-07-22T12:46:32+05:30 logger.go:67: module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Read complete after 1s [id=ed293fd4909f4bc69b1e85324b8c39db] +TestRunCustomsgExample 2025-07-22T12:46:32+05:30 logger.go:67: module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Reading... +TestRunCustomsgExample 2025-07-22T12:46:32+05:30 logger.go:67: module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Read complete after 1s [id=abac0df06b644a9cabc6e44f55b3880e] +TestRunCustomsgExample 2025-07-22T12:46:33+05:30 logger.go:67: module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Read complete after 1s [id=2025-07-22 07:16:33.28042 +0000 UTC] +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: Terraform used the selected providers to generate the following execution +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: plan. Resource actions are indicated with the following symbols: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + create +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: <= read (data resources) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: Terraform will perform the following actions: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # ibm_is_public_gateway.gateway will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_public_gateway" "gateway" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + floating_ip = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "base-ocp-customsg-fs5-gateway-1" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_status = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + status = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zone = "jp-osa-1" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # ibm_is_subnet.subnet_zone_1 will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_subnet" "subnet_zone_1" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + available_ipv4_address_count = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ipv4_cidr_block = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "base-ocp-customsg-fs5-subnet-1" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + network_acl = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + public_gateway = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_status = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + routing_table = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + routing_table_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + status = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + total_ipv4_address_count = 256 +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zone = "jp-osa-1" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # ibm_is_vpc.vpc will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_vpc" "vpc" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + address_prefix_management = "auto" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + classic_access = false +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cse_source_addresses = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_address_prefixes = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_network_acl = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_network_acl_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_network_acl_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_routing_table = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_routing_table_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_routing_table_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_security_group = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_security_group_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_security_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + health_reasons = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + health_state = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "base-ocp-customsg-fs5-vpc" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + no_sg_acl_rules = false +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_status = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_group = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + status = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + subnets = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + dns (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-cluster-sg" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-kube-api-vpe-sg" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-lb-sg" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-master-vpe-sg" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-registry-vpe-sg" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-worker-pool-sg" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_container_addons.existing_addons will be read during apply +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_container_addons" "existing_addons" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + addons = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_container_cluster_config.cluster_config[0] will be read during apply +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_container_cluster_config" "cluster_config" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + admin = true +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + admin_certificate = (sensitive value) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + admin_key = (sensitive value) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ca_certificate = (sensitive value) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + calico_config_file_path = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster_name_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + config_dir = "../../kubeconfig" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + config_file_path = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + host = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + token = (sensitive value) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_container_vpc_worker_pool.all_pools["custom-sg"] will be read during apply +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_container_vpc_worker_pool" "all_pools" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + autoscale_enabled = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crk = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + flavor = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + host_pool_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + isolation = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + kms_account_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + kms_instance_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + labels = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + operating_system = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + secondary_storage = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_count = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_name = "custom-sg" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zones = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_container_vpc_worker_pool.all_pools["default"] will be read during apply +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_container_vpc_worker_pool" "all_pools" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + autoscale_enabled = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crk = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + flavor = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + host_pool_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + isolation = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + kms_account_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + kms_instance_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + labels = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + operating_system = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + secondary_storage = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_count = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_name = "default" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zones = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_is_lbs.all_lbs[0] will be read during apply +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (depends on a resource or a module with changes pending) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_is_lbs" "all_lbs" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + load_balancers = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_is_virtual_endpoint_gateway.api_vpe[0] will be read during apply +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_is_virtual_endpoint_gateway" "api_vpe" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + allow_dns_resolution_binding = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + created_at = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + health_state = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ips = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_reasons = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_state = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_groups = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service_endpoints = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_is_virtual_endpoint_gateway.master_vpe[0] will be read during apply +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_is_virtual_endpoint_gateway" "master_vpe" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + allow_dns_resolution_binding = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + created_at = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + health_state = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ips = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_reasons = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_state = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_groups = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service_endpoints = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_is_virtual_endpoint_gateway.registry_vpe[0] will be read during apply +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_is_virtual_endpoint_gateway" "registry_vpe" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + allow_dns_resolution_binding = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + created_at = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + health_state = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ips = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_reasons = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_state = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_groups = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service_endpoints = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_container_addons.addons will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_container_addons" "addons" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + manage_all_addons = false +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + managed_addons = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + addons (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + timeouts { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + create = "1h" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_container_vpc_cluster.cluster[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_container_vpc_cluster" "cluster" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + albs = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cos_instance_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + disable_outbound_traffic_protection = false +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + disable_public_service_endpoint = false +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + entitlement = "cloud_pak" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + flavor = "bx2.4x16" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + force_delete_storage = true +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + image_security_enforcement = false +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ingress_hostname = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ingress_secret = (sensitive value) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + kube_version = "4.17_openshift" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + master_status = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + master_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "base-ocp-customsg-fs5" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + operating_system = "REDHAT_8_64" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + pod_subnet = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + private_service_endpoint_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + public_service_endpoint_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_status = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + secondary_storage = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_groups = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service_subnet = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + state = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + update_all_workers = false +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpe_service_endpoint_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + wait_for_worker_update = true +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + wait_till = "IngressReady" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_count = 2 +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_labels = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + timeouts { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + create = "3h" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + delete = "2h" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + update = "3h" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zones { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "jp-osa-1" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + subnet_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_container_vpc_worker_pool" "pool" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + autoscale_enabled = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + entitlement = "cloud_pak" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + flavor = "bx2.4x16" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + labels = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + operating_system = "REDHAT_8_64" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_groups = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_count = 2 +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_name = "custom-sg" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + taints (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + timeouts { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + create = "2h" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + delete = "2h" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zones { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "jp-osa-1" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + subnet_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_container_vpc_worker_pool.pool["default"] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_container_vpc_worker_pool" "pool" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + autoscale_enabled = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + entitlement = "cloud_pak" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + flavor = "bx2.4x16" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + import_on_create = true +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + labels = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + operating_system = "REDHAT_8_64" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + orphan_on_delete = true +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_count = 2 +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_name = "default" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + taints (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + timeouts { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + create = "2h" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + delete = "2h" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zones { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "jp-osa-1" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + subnet_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_resource_tag.cluster_access_tag[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_resource_tag" "cluster_access_tag" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + account_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + replace = false +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tag_type = "access" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = [ +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + "geretain-dev-1:permanent-test-tag-4", +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + "geretain-dev:permanent-test-tag-1", +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: ] +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_resource_tag.cos_access_tag[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_resource_tag" "cos_access_tag" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + account_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + replace = false +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tag_type = "access" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = [ +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + "geretain-dev-1:permanent-test-tag-4", +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + "geretain-dev:permanent-test-tag-1", +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: ] +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.null_resource.confirm_network_healthy[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "null_resource" "confirm_network_healthy" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.null_resource.reset_api_key will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "null_resource" "reset_api_key" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.module.attach_sg_to_api_vpe[0].ibm_is_security_group_target.sg_target[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group_target" "sg_target" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_group = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.module.attach_sg_to_lb[0].ibm_is_security_group_target.sg_target[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group_target" "sg_target" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_group = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.module.attach_sg_to_master_vpe[0].ibm_is_security_group_target.sg_target[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group_target" "sg_target" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_group = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.module.attach_sg_to_registry_vpe[0].ibm_is_security_group_target.sg_target[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group_target" "sg_target" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_group = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0] will be created +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_resource_instance" "cos_instance" { +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + account_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + allow_cleanup = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + created_at = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + created_by = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + dashboard_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + deleted_at = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + deleted_by = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + extensions = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + guid = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + last_operation = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + location = "global" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + locked = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "base-ocp-customsg-fs5_cos" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + onetime_credentials = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + plan = "standard" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + plan_history = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_aliases_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_bindings_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_keys_url = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_plan_id = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_status = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + restored_at = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + restored_by = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + scheduled_reclaim_at = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + scheduled_reclaim_by = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service = "cloud-object-storage" +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service_endpoints = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + state = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + status = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + sub_type = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target_crn = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + type = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + update_at = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + update_by = (known after apply) +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: Plan: 22 to add, 0 to change, 0 to destroy. +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: Changes to Outputs: +TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster_name = "base-ocp-customsg-fs5" +TestRunCustomsgExample 2025-07-22T12:46:35+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key: Creating... +TestRunCustomsgExample 2025-07-22T12:46:35+05:30 logger.go:67: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Creating... +TestRunCustomsgExample 2025-07-22T12:46:35+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key: Provisioning with 'local-exec'... +TestRunCustomsgExample 2025-07-22T12:46:35+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key (local-exec): Executing: ["/bin/bash" "-c" "../../scripts/reset_iks_api_key.sh jp-osa ed293fd4909f4bc69b1e85324b8c39db false default"] +TestRunCustomsgExample 2025-07-22T12:46:37+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key (local-exec): Found key named containers-kubernetes-key which covers clusters in jp-osa and resource group ID ed293fd4909f4bc69b1e85324b8c39db +TestRunCustomsgExample 2025-07-22T12:46:37+05:30 logger.go:67: ibm_is_vpc.vpc: Creating... +TestRunCustomsgExample 2025-07-22T12:46:38+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key (local-exec): Found key named containers-kubernetes-key which covers clusters in jp-osa and resource group ID ed293fd4909f4bc69b1e85324b8c39db +TestRunCustomsgExample 2025-07-22T12:46:39+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key (local-exec): Found key named containers-kubernetes-key which covers clusters in jp-osa and resource group ID ed293fd4909f4bc69b1e85324b8c39db +TestRunCustomsgExample 2025-07-22T12:46:39+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key: Creation complete after 3s [id=3053990436515595810] +TestRunCustomsgExample 2025-07-22T12:46:45+05:30 logger.go:67: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Still creating... [10s elapsed] +TestRunCustomsgExample 2025-07-22T12:46:47+05:30 logger.go:67: ibm_is_vpc.vpc: Still creating... [10s elapsed] +TestRunCustomsgExample 2025-07-22T12:46:52+05:30 logger.go:67: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Creation complete after 17s [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] +TestRunCustomsgExample 2025-07-22T12:46:52+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Creating... +TestRunCustomsgExample 2025-07-22T12:46:57+05:30 logger.go:67: ibm_is_vpc.vpc: Still creating... [20s elapsed] +TestRunCustomsgExample 2025-07-22T12:47:02+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Still creating... [10s elapsed] +TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: ibm_is_vpc.vpc: Creation complete after 26s [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea] +TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Creating... +TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: ibm_is_public_gateway.gateway: Creating... +TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Creating... +TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Creating... +TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Creating... +TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Creating... +TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Creating... +TestRunCustomsgExample 2025-07-22T12:47:06+05:30 logger.go:67: module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Creation complete after 2s [id=r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7] +TestRunCustomsgExample 2025-07-22T12:47:06+05:30 logger.go:67: module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Creation complete after 2s [id=r034-ab38f26e-b232-4e0c-82eb-077af0167d87] +TestRunCustomsgExample 2025-07-22T12:47:07+05:30 logger.go:67: module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Creation complete after 2s [id=r034-1eb1b040-5158-4dd7-ab9d-225267b43c89] +TestRunCustomsgExample 2025-07-22T12:47:07+05:30 logger.go:67: module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Creation complete after 2s [id=r034-28b9e2d6-5176-4a66-aff7-89599c340129] +TestRunCustomsgExample 2025-07-22T12:47:07+05:30 logger.go:67: module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Creation complete after 3s [id=r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7] +TestRunCustomsgExample 2025-07-22T12:47:10+05:30 logger.go:67: module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Creation complete after 6s [id=r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d] +TestRunCustomsgExample 2025-07-22T12:47:12+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Still creating... [20s elapsed] +TestRunCustomsgExample 2025-07-22T12:47:14+05:30 logger.go:67: ibm_is_public_gateway.gateway: Still creating... [10s elapsed] +TestRunCustomsgExample 2025-07-22T12:47:19+05:30 logger.go:67: ibm_is_public_gateway.gateway: Creation complete after 15s [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c] +TestRunCustomsgExample 2025-07-22T12:47:20+05:30 logger.go:67: ibm_is_subnet.subnet_zone_1: Creating... +TestRunCustomsgExample 2025-07-22T12:47:22+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Still creating... [30s elapsed] +TestRunCustomsgExample 2025-07-22T12:47:24+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Creation complete after 31s [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] +TestRunCustomsgExample 2025-07-22T12:47:30+05:30 logger.go:67: ibm_is_subnet.subnet_zone_1: Still creating... [10s elapsed] +TestRunCustomsgExample 2025-07-22T12:47:32+05:30 logger.go:67: ibm_is_subnet.subnet_zone_1: Creation complete after 13s [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a] +TestRunCustomsgExample 2025-07-22T12:47:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Creating... +TestRunCustomsgExample 2025-07-22T12:47:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10s elapsed] +TestRunCustomsgExample 2025-07-22T12:47:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20s elapsed] +TestRunCustomsgExample 2025-07-22T12:48:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30s elapsed] +TestRunCustomsgExample 2025-07-22T12:48:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40s elapsed] +TestRunCustomsgExample 2025-07-22T12:48:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [50s elapsed] +TestRunCustomsgExample 2025-07-22T12:48:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:48:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:48:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m20s elapsed] +TestRunCustomsgExample 2025-07-22T12:49:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m30s elapsed] +TestRunCustomsgExample 2025-07-22T12:49:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m40s elapsed] +TestRunCustomsgExample 2025-07-22T12:49:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m50s elapsed] +TestRunCustomsgExample 2025-07-22T12:49:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:49:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:49:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m20s elapsed] +TestRunCustomsgExample 2025-07-22T12:50:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m30s elapsed] +TestRunCustomsgExample 2025-07-22T12:50:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m40s elapsed] +TestRunCustomsgExample 2025-07-22T12:50:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m50s elapsed] +TestRunCustomsgExample 2025-07-22T12:50:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:50:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:50:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m20s elapsed] +TestRunCustomsgExample 2025-07-22T12:51:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m30s elapsed] +TestRunCustomsgExample 2025-07-22T12:51:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m40s elapsed] +TestRunCustomsgExample 2025-07-22T12:51:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m50s elapsed] +TestRunCustomsgExample 2025-07-22T12:51:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:51:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:51:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m20s elapsed] +TestRunCustomsgExample 2025-07-22T12:52:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m30s elapsed] +TestRunCustomsgExample 2025-07-22T12:52:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m40s elapsed] +TestRunCustomsgExample 2025-07-22T12:52:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m50s elapsed] +TestRunCustomsgExample 2025-07-22T12:52:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:52:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:52:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m20s elapsed] +TestRunCustomsgExample 2025-07-22T12:53:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m30s elapsed] +TestRunCustomsgExample 2025-07-22T12:53:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m40s elapsed] +TestRunCustomsgExample 2025-07-22T12:53:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m50s elapsed] +TestRunCustomsgExample 2025-07-22T12:53:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:53:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:53:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m20s elapsed] +TestRunCustomsgExample 2025-07-22T12:54:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m30s elapsed] +TestRunCustomsgExample 2025-07-22T12:54:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m40s elapsed] +TestRunCustomsgExample 2025-07-22T12:54:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m50s elapsed] +TestRunCustomsgExample 2025-07-22T12:54:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:54:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:54:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m20s elapsed] +TestRunCustomsgExample 2025-07-22T12:55:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m30s elapsed] +TestRunCustomsgExample 2025-07-22T12:55:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m40s elapsed] +TestRunCustomsgExample 2025-07-22T12:55:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m50s elapsed] +TestRunCustomsgExample 2025-07-22T12:55:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:55:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:55:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m20s elapsed] +TestRunCustomsgExample 2025-07-22T12:56:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m30s elapsed] +TestRunCustomsgExample 2025-07-22T12:56:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m40s elapsed] +TestRunCustomsgExample 2025-07-22T12:56:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m50s elapsed] +TestRunCustomsgExample 2025-07-22T12:56:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:56:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:56:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m20s elapsed] +TestRunCustomsgExample 2025-07-22T12:57:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m30s elapsed] +TestRunCustomsgExample 2025-07-22T12:57:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m40s elapsed] +TestRunCustomsgExample 2025-07-22T12:57:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m50s elapsed] +TestRunCustomsgExample 2025-07-22T12:57:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:57:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:57:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m20s elapsed] +TestRunCustomsgExample 2025-07-22T12:58:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m30s elapsed] +TestRunCustomsgExample 2025-07-22T12:58:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m40s elapsed] +TestRunCustomsgExample 2025-07-22T12:58:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m50s elapsed] +TestRunCustomsgExample 2025-07-22T12:58:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:58:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:58:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m20s elapsed] +TestRunCustomsgExample 2025-07-22T12:59:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m30s elapsed] +TestRunCustomsgExample 2025-07-22T12:59:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m40s elapsed] +TestRunCustomsgExample 2025-07-22T12:59:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m50s elapsed] +TestRunCustomsgExample 2025-07-22T12:59:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m0s elapsed] +TestRunCustomsgExample 2025-07-22T12:59:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m10s elapsed] +TestRunCustomsgExample 2025-07-22T12:59:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:00:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:00:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:00:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:00:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:00:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:00:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:01:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:01:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:01:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:01:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:01:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:01:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:02:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:02:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:02:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:02:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:02:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:02:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:03:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:03:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:03:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:03:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:03:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:03:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:04:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:04:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:04:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:04:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:04:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:04:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:05:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:05:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:05:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:05:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:05:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:05:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:06:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:06:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:06:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:06:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:06:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:06:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:07:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:07:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:07:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:07:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:07:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:07:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:08:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:08:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:08:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:08:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:08:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:08:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:09:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:09:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:09:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:09:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:09:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:09:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:10:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:10:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:10:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:10:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:10:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:10:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:11:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:11:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:11:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:11:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:11:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:11:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:12:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:12:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:12:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:12:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:12:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:12:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:13:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:13:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:13:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:13:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:13:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:13:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:14:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:14:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:14:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:14:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:14:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:14:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:15:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:15:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:15:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:15:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:15:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:15:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:16:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:16:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:16:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:16:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:16:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:16:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:17:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:17:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:17:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:17:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:17:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:17:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:18:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:18:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:18:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:18:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:18:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:18:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:19:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:19:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:19:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:19:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:19:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:19:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:20:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:20:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:20:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:20:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:20:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:20:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:21:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:21:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:21:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:21:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:21:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:21:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:22:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:22:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:22:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:22:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:22:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:22:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:23:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:23:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:23:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:23:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:23:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:23:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:24:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:24:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:24:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:24:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:24:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:24:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:25:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:25:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:25:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:25:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:25:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:25:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:26:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:26:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:26:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:26:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:26:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:26:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:27:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:27:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:27:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:27:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:27:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:27:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:28:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:28:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:28:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:28:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:28:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:28:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:29:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:29:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:29:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:29:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [42m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Creation complete after 42m2s [id=d1vjm9jo0mot2mfh0k0g] +TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Reading... +TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.data.ibm_container_addons.existing_addons: Reading... +TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Creating... +TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Creating... +TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Creating... +TestRunCustomsgExample 2025-07-22T13:29:37+05:30 logger.go:67: module.ocp_base.data.ibm_container_addons.existing_addons: Read complete after 2s [id=d1vjm9jo0mot2mfh0k0g] +TestRunCustomsgExample 2025-07-22T13:29:41+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Creation complete after 7s [id=d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb] +TestRunCustomsgExample 2025-07-22T13:29:42+05:30 logger.go:67: module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Read complete after 7s [id=d1vjm9jo0mot2mfh0k0g] +TestRunCustomsgExample 2025-07-22T13:29:44+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Still creating... [10s elapsed] +TestRunCustomsgExample 2025-07-22T13:29:44+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [10s elapsed] +TestRunCustomsgExample 2025-07-22T13:29:54+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [20s elapsed] +TestRunCustomsgExample 2025-07-22T13:29:54+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Still creating... [20s elapsed] +TestRunCustomsgExample 2025-07-22T13:30:04+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Still creating... [30s elapsed] +TestRunCustomsgExample 2025-07-22T13:30:04+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [30s elapsed] +TestRunCustomsgExample 2025-07-22T13:30:09+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Creation complete after 34s [id=crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::] +TestRunCustomsgExample 2025-07-22T13:30:14+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [40s elapsed] +TestRunCustomsgExample 2025-07-22T13:30:24+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [50s elapsed] +TestRunCustomsgExample 2025-07-22T13:30:34+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:30:44+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:30:54+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:31:04+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:31:14+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:31:24+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:31:34+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [2m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:31:44+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [2m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:31:54+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [2m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:32:04+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [2m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: ╷ +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ Error: Post "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: read: no route to host +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  with module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"], +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  on ../../main.tf line 340, in resource "ibm_container_vpc_worker_pool" "pool": +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  340: resource "ibm_container_vpc_worker_pool" "pool" { +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ --- +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ id: terraform-4b844566 +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ summary: 'Post +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  read: no route to host' +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ severity: error +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ resource: ibm_container_vpc_worker_pool +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ operation: create +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ component: +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  name: github.com/IBM-Cloud/terraform-provider-ibm +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  version: 1.80.3 +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ --- +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: ╵ +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 retry.go:99: Returning due to fatal error: FatalError{Underlying: error while running command: exit status 1; ╷ +│ Error: Post "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: read: no route to host +│  +│  with module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"], +│  on ../../main.tf line 340, in resource "ibm_container_vpc_worker_pool" "pool": +│  340: resource "ibm_container_vpc_worker_pool" "pool" { +│  +│ --- +│ id: terraform-4b844566 +│ summary: 'Post +│ "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": +│  read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: +│  read: no route to host' +│ severity: error +│ resource: ibm_container_vpc_worker_pool +│ operation: create +│ component: +│  name: github.com/IBM-Cloud/terraform-provider-ibm +│  version: 1.80.3 +│ --- +│  +╵} + tests.go:663: + Error Trace: /Users/aryagirishk/go/pkg/mod/github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper@v1.55.7/testhelper/tests.go:663 + /Users/aryagirishk/go/pkg/mod/github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper@v1.55.7/testhelper/tests.go:583 + /Users/aryagirishk/Desktop/quickstartocp/last/last/terraform-ibm-base-ocp-vpc/tests/pr_test.go:214 + Error: Expected nil, but got: retry.FatalError{Underlying:(*shell.ErrWithCmdOutput)(0x14000686060)} + Test: TestRunCustomsgExample + Messages: Failed%!(EXTRA retry.FatalError=FatalError{Underlying: error while running command: exit status 1; ╷ + │ Error: Post "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: read: no route to host + │  + │  with module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"], + │  on ../../main.tf line 340, in resource "ibm_container_vpc_worker_pool" "pool": + │  340: resource "ibm_container_vpc_worker_pool" "pool" { + │  + │ --- + │ id: terraform-4b844566 + │ summary: 'Post + │ "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": + │  read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: + │  read: no route to host' + │ severity: error + │ resource: ibm_container_vpc_worker_pool + │ operation: create + │ component: + │  name: github.com/IBM-Cloud/terraform-provider-ibm + │  version: 1.80.3 + │ --- + │  + ╵}) +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 tests.go:664: FINISHED: Init / Apply +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 retry.go:91: terraform [output -no-color -json] +2025/07/22 13:32:11 Removing module.ocp_base.null_resource.confirm_network_healthy from Statefile /var/folders/vh/syq93zks0k38v_dhpnypz4hm0000gn/T/terraform-base-ocp-customsg-fs51954832040/examples/custom_sg/terraform.tfstate +2025/07/22 13:32:11 Executing: terraform state rm module.ocp_base.null_resource.confirm_network_healthy +TestRunCustomsgExample 2025-07-22T13:32:11+05:30 tests.go:157: ╷ +│ Error: Invalid target address +│  +│ No matching objects found. To view the available instances, use "terraform +│ state list". Please modify the address to reference a specific instance. +╵ + + +2025/07/22 13:32:11 Removing module.ocp_base.null_resource.reset_api_key from Statefile /var/folders/vh/syq93zks0k38v_dhpnypz4hm0000gn/T/terraform-base-ocp-customsg-fs51954832040/examples/custom_sg/terraform.tfstate +2025/07/22 13:32:11 Executing: terraform state rm module.ocp_base.null_resource.reset_api_key +TestRunCustomsgExample 2025-07-22T13:32:12+05:30 tests.go:157: Removed module.ocp_base.null_resource.reset_api_key +Successfully removed 1 resource instance(s). + +TestRunCustomsgExample 2025-07-22T13:32:12+05:30 tests.go:196: START: Destroy +TestRunCustomsgExample 2025-07-22T13:32:12+05:30 retry.go:91: terraform [destroy -auto-approve -input=false -var resource_tags=[] -var ocp_version=4.17 -var access_tags=["geretain-dev:permanent-test-tag-1", "geretain-dev-1:permanent-test-tag-4"] -var ocp_entitlement=cloud_pak -var prefix=base-ocp-customsg-fs5 -var region=jp-osa -var resource_group=geretain-test-base-ocp-vpc -lock=false] +TestRunCustomsgExample 2025-07-22T13:32:12+05:30 command.go:121: Running command terraform with args [destroy -auto-approve -input=false -var resource_tags=[] -var ocp_version=4.17 -var access_tags=["geretain-dev:permanent-test-tag-1", "geretain-dev-1:permanent-test-tag-4"] -var ocp_entitlement=cloud_pak -var prefix=base-ocp-customsg-fs5 -var region=jp-osa -var resource_group=geretain-test-base-ocp-vpc -lock=false] +TestRunCustomsgExample 2025-07-22T13:32:13+05:30 command.go:206: module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Reading... +TestRunCustomsgExample 2025-07-22T13:32:13+05:30 command.go:206: module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Reading... +TestRunCustomsgExample 2025-07-22T13:32:13+05:30 command.go:206: module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Reading... +TestRunCustomsgExample 2025-07-22T13:32:13+05:30 command.go:206: module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Read complete after 0s [id=2025-07-22 08:02:13.896336 +0000 UTC] +TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Read complete after 1s [id=ed293fd4909f4bc69b1e85324b8c39db] +TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Reading... +TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Refreshing state... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] +TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: ibm_is_vpc.vpc: Refreshing state... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea] +TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Read complete after 1s [id=abac0df06b644a9cabc6e44f55b3880e] +TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Read complete after 1s [id=2025-07-22 08:02:15.733671 +0000 UTC] +TestRunCustomsgExample 2025-07-22T13:32:17+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Refreshing state... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] +TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: ibm_is_public_gateway.gateway: Refreshing state... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c] +TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-28b9e2d6-5176-4a66-aff7-89599c340129] +TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-ab38f26e-b232-4e0c-82eb-077af0167d87] +TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-1eb1b040-5158-4dd7-ab9d-225267b43c89] +TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7] +TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d] +TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7] +TestRunCustomsgExample 2025-07-22T13:32:35+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Refreshing state... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a] +TestRunCustomsgExample 2025-07-22T13:32:37+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Refreshing state... [id=d1vjm9jo0mot2mfh0k0g] +TestRunCustomsgExample 2025-07-22T13:32:42+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Refreshing state... [id=crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::] +TestRunCustomsgExample 2025-07-22T13:32:42+05:30 command.go:206: module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Reading... +TestRunCustomsgExample 2025-07-22T13:32:42+05:30 command.go:206: module.ocp_base.data.ibm_container_addons.existing_addons: Reading... +TestRunCustomsgExample 2025-07-22T13:32:42+05:30 command.go:206: module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Refreshing state... [id=d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb] +TestRunCustomsgExample 2025-07-22T13:32:44+05:30 command.go:206: module.ocp_base.data.ibm_container_addons.existing_addons: Read complete after 1s [id=d1vjm9jo0mot2mfh0k0g] +TestRunCustomsgExample 2025-07-22T13:32:49+05:30 command.go:206: module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Read complete after 6s [id=d1vjm9jo0mot2mfh0k0g] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: Terraform used the selected providers to generate the following execution +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: plan. Resource actions are indicated with the following symbols: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - destroy +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: Terraform will perform the following actions: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # ibm_is_public_gateway.gateway will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_public_gateway" "gateway" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::public-gateway:r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - floating_ip = { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "address" = "163.68.87.241" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "id" = "r034-6b0b9e27-710a-441e-95a7-f65086faee0a" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5-gateway-1" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/publicGateways" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::public-gateway:r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "base-ocp-customsg-fs5-gateway-1" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_status = "available" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - status = "available" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone = "jp-osa-1" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # ibm_is_subnet.subnet_zone_1 will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_subnet" "subnet_zone_1" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - available_ipv4_address_count = 239 -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::subnet:02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ipv4_cidr_block = "10.248.0.0/24" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5-subnet-1" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - network_acl = "r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - public_gateway = "r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/subnets" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::subnet:02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "base-ocp-customsg-fs5-subnet-1" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_status = "available" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - routing_table = "r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - routing_table_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc-routing-table:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea/r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - status = "available" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - total_ipv4_address_count = 256 -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone = "jp-osa-1" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # ibm_is_vpc.vpc will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_vpc" "vpc" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address_prefix_management = "auto" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - classic_access = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - cse_source_addresses = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address = "10.12.13.199" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone_name = "jp-osa-1" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address = "10.12.32.25" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone_name = "jp-osa-2" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address = "10.12.41.144" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone_name = "jp-osa-3" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_address_prefixes = { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "jp-osa-1" = "10.248.0.0/18" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "jp-osa-2" = "10.248.64.0/18" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "jp-osa-3" = "10.248.128.0/18" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_network_acl = "r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_network_acl_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::network-acl:r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_network_acl_name = "botanist-oil-uncombed-canary" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_routing_table = "r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_routing_table_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc-routing-table:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea/r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_routing_table_name = "unstable-hatchet-festivity-conjure" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_security_group = "r034-2ce38964-206c-4961-a52a-84325930fc25" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_security_group_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2ce38964-206c-4961-a52a-84325930fc25" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_security_group_name = "postcard-satiable-unused-amount" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - health_reasons = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - health_state = "ok" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - no_sg_acl_rules = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/vpcs" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "base-ocp-customsg-fs5-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_status = "available" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - security_group = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "kube-lbaas-d1vjm9jo0mot2mfh0k0g" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30134 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30134 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-e11d240d-5951-4141-ba48-6c6c93096fa5" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 32203 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 32203 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-725aea9c-421c-4836-bec7-d143adab3ec5" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 80 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 80 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "0.0.0.0/0" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-5ee1c2d0-60a4-4913-9ee1-958ddd4850f1" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 443 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 443 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "0.0.0.0/0" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-f5f890a3-abd6-4bfa-a646-59699d32efd0" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 443 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 443 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.68.87.241" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-f7e0287e-0a1d-4ad5-b09f-32616fbd8146" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-e94a7557-fb65-4158-8a88-d5a74899a20a" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "kube-vpegw-d1vjm9jo0mot2mfh0k0g" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 32220 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 32220 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-4bf5315f-e01e-4630-ba26-6e98a10aeec8" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30160 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30160 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-61bbabbf-58f8-4b96-b198-65456be1a9df" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30669 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30669 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-520e0d04-09fe-4368-8b33-4410927151b3" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 32220 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 32220 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "10.248.0.0/24" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-77498c97-ff9f-46c3-b9eb-71227bbee5a5" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30669 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30669 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "10.248.0.0/24" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-a112fed6-6ac9-419a-9e40-95517e86aef5" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "kube-d1vjm9jo0mot2mfh0k0g" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "161.26.0.0/16" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-fc20c1b6-5f4c-499a-8ac0-2ecd56cf9b01" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-d06d472b-939d-4ff7-baa6-275e440f817d" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-8f00c08e-0baf-4af8-b224-33bfde9b0281" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "166.8.0.0/14" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-6832e1ad-3dbb-427a-9cc5-2293e32ba006" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "166.9.251.2" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-d1d7142c-de8f-43b9-ac67-ffbd847c1bfa" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "166.9.250.226" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-d5b4e218-66c0-463b-878a-4b9af3166eb7" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "166.9.250.194" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-fc5bc36d-088a-49ca-900c-40ceab763602" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-e94a7557-fb65-4158-8a88-d5a74899a20a" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-4f143879-dec5-42a7-9f1b-2e3346a11ef1" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-550de43e-63af-4403-bb4f-3c98b23d7f40" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "172.17.0.0/18" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-48cf28d5-c157-41ff-b8fb-492540b1f9ce" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "172.17.0.0/18" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-3194d057-4369-45e3-9f18-4ec9b6a9ac9b" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-f9c75a22-e09a-4080-9c9a-9d35b0849c7f" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "icmp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "0.0.0.0/0" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-cba515f3-78a8-4c40-be47-e9ea5c52c7a7" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 8 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30669 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30669 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.73.64.250" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-be2e9c54-088e-4463-9b19-c97e3d438cbd" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30669 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30669 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.68.69.114" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-3473c753-7799-40d9-abce-1cfd60e88371" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30669 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30669 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.69.65.114" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-b4c1c790-b651-4772-9c5b-48a4f152073d" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30134 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30134 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-2e949bfd-dd18-4ba1-b266-820126ffb378" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 32203 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 32203 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-659d96b8-f7ff-4932-ab96-76a6e9fe4820" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 443 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 443 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.68.90.13" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-c18ea92b-0da9-4259-9541-232386cb6770" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 443 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 443 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.68.93.113" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-0ed4052e-28b3-4013-bfa0-6434dae34be0" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-d06d472b-939d-4ff7-baa6-275e440f817d" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "kube-vpegw-r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-4a12c537-8e68-428e-aca7-4a530f9e8f33" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-kube-api-vpe-sg" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-28b9e2d6-5176-4a66-aff7-89599c340129" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-cluster-sg" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-lb-sg" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-registry-vpe-sg" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-worker-pool-sg" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-ab38f26e-b232-4e0c-82eb-077af0167d87" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-master-vpe-sg" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-2ce38964-206c-4961-a52a-84325930fc25" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "postcard-satiable-unused-amount" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "0.0.0.0/0" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-38bc3f6a-3900-41e4-9382-5825757b364c" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-2ce38964-206c-4961-a52a-84325930fc25" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-58e990ad-524c-476f-808a-8f781a32d767" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - status = "available" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - subnets = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - available_ipv4_address_count = 239 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5-subnet-1" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - status = "available" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - total_ipv4_address_count = 256 +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone = "jp-osa-1" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - dns { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - enable_hub = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resolution_binding_count = 0 -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resolver { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - configuration = "private_resolver" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - servers = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address = "161.26.0.7" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (1 unchanged attribute hidden) +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address = "161.26.0.8" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (1 unchanged attribute hidden) +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = "system" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (7 unchanged attributes hidden) +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0] will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-cluster-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-cluster-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-kube-api-vpe-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-kube-api-vpe-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0] will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-lb-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-lb-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-master-vpe-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-master-vpe-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-registry-vpe-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-registry-vpe-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0] will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-worker-pool-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-worker-pool-sg" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.ocp_base.ibm_container_vpc_cluster.cluster[0] will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_container_vpc_cluster" "cluster" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - albs = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - cos_instance_crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - disable_outbound_traffic_protection = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - disable_public_service_endpoint = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - entitlement = "cloud_pak" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - flavor = "bx2.4x16" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - force_delete_storage = true -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "d1vjm9jo0mot2mfh0k0g" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - image_security_enforcement = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ingress_hostname = "base-ocp-customsg-fs5-3b5bf5f75003778663c521c8c35ad277-0000.jp-osa.containers.appdomain.cloud" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ingress_secret = (sensitive value) -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - kube_version = "4.17.28_openshift" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - master_status = "Ready" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - master_url = "https://c101-e.jp-osa.containers.cloud.ibm.com:32220" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - operating_system = "REDHAT_8_64" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - pod_subnet = "172.17.0.0/18" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - private_service_endpoint_url = "https://c101.private.jp-osa.containers.cloud.ibm.com:32220" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - public_service_endpoint_url = "https://c101-e.jp-osa.containers.cloud.ibm.com:32220" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/kubernetes/clusters" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "base-ocp-customsg-fs5" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_status = "normal" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - security_groups = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "cluster", +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "r034-28b9e2d6-5176-4a66-aff7-89599c340129", +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - service_subnet = "172.21.0.0/16" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - state = "normal" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - update_all_workers = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc_id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpe_service_endpoint_url = "https://d1vjm9jo0mot2mfh0k0g.vpe.private.jp-osa.containers.cloud.ibm.com:32220" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - wait_for_worker_update = true -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - wait_till = "IngressReady" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - worker_count = 2 -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - timeouts { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - create = "3h" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - delete = "2h" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - update = "3h" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zones { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "jp-osa-1" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - subnet_id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.ocp_base.ibm_container_vpc_worker_pool.pool["default"] will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_container_vpc_worker_pool" "pool" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - autoscale_enabled = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - cluster = "d1vjm9jo0mot2mfh0k0g" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - entitlement = "cloud_pak" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - flavor = "bx2.4x16" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - import_on_create = true -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - labels = {} -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - operating_system = "REDHAT_8_64" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - orphan_on_delete = true -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/kubernetes/clusters" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc_id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - worker_count = 2 -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - worker_pool_id = "d1vjm9jo0mot2mfh0k0g-44bcbfb" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - worker_pool_name = "default" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (1 unchanged attribute hidden) +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - timeouts { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - create = "2h" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - delete = "2h" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zones { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "jp-osa-1" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - subnet_id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.ocp_base.ibm_resource_tag.cluster_access_tag[0] will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_resource_tag" "cluster_access_tag" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - replace = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_id = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tag_type = "access" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "geretain-dev-1:permanent-test-tag-4", +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "geretain-dev:permanent-test-tag-1", +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (1 unchanged attribute hidden) +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.ocp_base.ibm_resource_tag.cos_access_tag[0] will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_resource_tag" "cos_access_tag" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - replace = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tag_type = "access" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "geretain-dev-1:permanent-test-tag-4", +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "geretain-dev:permanent-test-tag-1", +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (1 unchanged attribute hidden) +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0] will be destroyed +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_resource_instance" "cos_instance" { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - account_id = "abac0df06b644a9cabc6e44f55b3880e" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - allow_cleanup = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - created_at = "2025-07-22T07:16:38.175Z" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - created_by = "IBMid-693000KKB0" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - dashboard_url = "https://cloud.ibm.com/objectstorage/crn%3Av1%3Abluemix%3Apublic%3Acloud-object-storage%3Aglobal%3Aa%2Fabac0df06b644a9cabc6e44f55b3880e%3Af6a5c310-bcff-4d3e-92b6-fb05dc9a0f32%3A%3A" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - extensions = {} -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - guid = "f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - last_operation = { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "async" = "false" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "cancelable" = "false" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "description" = "Completed create instance operation" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "poll" = "false" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "state" = "succeeded" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "type" = "create" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - location = "global" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - locked = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5_cos" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - onetime_credentials = false -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - plan = "standard" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - plan_history = [ +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_plan_id = "744bfc56-d12c-4866-88d5-dac9139e0e5d" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - start_date = "2025-07-22T07:16:38.175Z" +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_aliases_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_aliases" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_bindings_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_bindings" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/services/" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_crn = "crn:v1:bluemix:public:resource-controller::a/abac0df06b644a9cabc6e44f55b3880e::resource-group:ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "crn:v1:bluemix:public:resource-controller::a/abac0df06b644a9cabc6e44f55b3880e::resource-group:ed293fd4909f4bc69b1e85324b8c39db" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_id = "dff97f5c-bc5e-4455-b470-411c3edbe49c" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_keys_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_keys" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "base-ocp-customsg-fs5_cos" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_plan_id = "744bfc56-d12c-4866-88d5-dac9139e0e5d" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_status = "active" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - service = "cloud-object-storage" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - state = "active" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - status = "active" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - target_crn = "crn:v1:bluemix:public:globalcatalog::::deployment:744bfc56-d12c-4866-88d5-dac9139e0e5d%3Aglobal" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = "service_instance" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - update_at = "2025-07-22T07:16:40.426Z" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (5 unchanged attributes hidden) +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: Plan: 0 to add, 0 to change, 14 to destroy. +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: Changes to Outputs: +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - cluster_name = "base-ocp-customsg-fs5" -> null +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Destroying... [id=crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Destroying... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Destroying... [id=d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb] +TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Destruction complete after 0s +TestRunCustomsgExample 2025-07-22T13:32:52+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Destruction complete after 2s +TestRunCustomsgExample 2025-07-22T13:32:53+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Destruction complete after 2s +TestRunCustomsgExample 2025-07-22T13:32:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Destroying... [id=d1vjm9jo0mot2mfh0k0g] +TestRunCustomsgExample 2025-07-22T13:33:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 10s elapsed] +TestRunCustomsgExample 2025-07-22T13:33:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 20s elapsed] +TestRunCustomsgExample 2025-07-22T13:33:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 30s elapsed] +TestRunCustomsgExample 2025-07-22T13:33:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 40s elapsed] +TestRunCustomsgExample 2025-07-22T13:33:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 50s elapsed] +TestRunCustomsgExample 2025-07-22T13:33:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:34:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:34:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:34:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:34:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:34:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:34:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:35:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:35:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:35:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:35:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:35:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:35:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:36:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:36:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:36:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:36:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:36:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:36:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:37:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:37:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:37:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:37:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:37:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:37:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:38:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:38:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:38:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:38:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:38:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:38:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:39:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:39:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:39:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:39:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m40s elapsed] +TestRunCustomsgExample 2025-07-22T13:39:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m50s elapsed] +TestRunCustomsgExample 2025-07-22T13:39:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m0s elapsed] +TestRunCustomsgExample 2025-07-22T13:40:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m10s elapsed] +TestRunCustomsgExample 2025-07-22T13:40:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m20s elapsed] +TestRunCustomsgExample 2025-07-22T13:40:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m30s elapsed] +TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Destruction complete after 7m37s +TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7] +TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-ab38f26e-b232-4e0c-82eb-077af0167d87] +TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7] +TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d] +TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a] +TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Destroying... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] +TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-1eb1b040-5158-4dd7-ab9d-225267b43c89] +TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-28b9e2d6-5176-4a66-aff7-89599c340129] +TestRunCustomsgExample 2025-07-22T13:40:38+05:30 command.go:206: module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s +TestRunCustomsgExample 2025-07-22T13:40:38+05:30 command.go:206: module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s +TestRunCustomsgExample 2025-07-22T13:40:39+05:30 command.go:206: module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s +TestRunCustomsgExample 2025-07-22T13:40:39+05:30 command.go:206: module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s +TestRunCustomsgExample 2025-07-22T13:40:39+05:30 command.go:206: module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s +TestRunCustomsgExample 2025-07-22T13:40:40+05:30 command.go:206: module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Destruction complete after 10s +TestRunCustomsgExample 2025-07-22T13:40:40+05:30 command.go:206: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Still destroying... [id=crn:v1:bluemix:public:cloud-object-stor...f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::, 10s elapsed] +TestRunCustomsgExample 2025-07-22T13:40:40+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 10s elapsed] +TestRunCustomsgExample 2025-07-22T13:40:50+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 20s elapsed] +TestRunCustomsgExample 2025-07-22T13:40:50+05:30 command.go:206: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Still destroying... [id=crn:v1:bluemix:public:cloud-object-stor...f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::, 20s elapsed] +TestRunCustomsgExample 2025-07-22T13:40:52+05:30 command.go:206: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Destruction complete after 22s +TestRunCustomsgExample 2025-07-22T13:41:00+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 30s elapsed] +TestRunCustomsgExample 2025-07-22T13:41:02+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Destruction complete after 33s +TestRunCustomsgExample 2025-07-22T13:41:02+05:30 command.go:206: ibm_is_public_gateway.gateway: Destroying... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c] +TestRunCustomsgExample 2025-07-22T13:41:12+05:30 command.go:206: ibm_is_public_gateway.gateway: Still destroying... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c, 10s elapsed] +TestRunCustomsgExample 2025-07-22T13:41:14+05:30 command.go:206: ibm_is_public_gateway.gateway: Destruction complete after 11s +TestRunCustomsgExample 2025-07-22T13:41:14+05:30 command.go:206: ibm_is_vpc.vpc: Destroying... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea] +TestRunCustomsgExample 2025-07-22T13:41:24+05:30 command.go:206: ibm_is_vpc.vpc: Still destroying... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea, 10s elapsed] +TestRunCustomsgExample 2025-07-22T13:41:26+05:30 command.go:206: ibm_is_vpc.vpc: Destruction complete after 13s +TestRunCustomsgExample 2025-07-22T13:41:26+05:30 command.go:206:  +TestRunCustomsgExample 2025-07-22T13:41:26+05:30 command.go:206: Destroy complete! Resources: 14 destroyed. +TestRunCustomsgExample 2025-07-22T13:41:26+05:30 command.go:206:  +TestRunCustomsgExample 2025-07-22T13:41:26+05:30 tests.go:261: module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Reading... +module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Reading... +module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Reading... +module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Read complete after 0s [id=2025-07-22 08:02:13.896336 +0000 UTC] +module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Read complete after 1s [id=ed293fd4909f4bc69b1e85324b8c39db] +module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Reading... +module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Refreshing state... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] +ibm_is_vpc.vpc: Refreshing state... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea] +module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Read complete after 1s [id=abac0df06b644a9cabc6e44f55b3880e] +module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Read complete after 1s [id=2025-07-22 08:02:15.733671 +0000 UTC] +module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Refreshing state... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] +ibm_is_public_gateway.gateway: Refreshing state... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c] +module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-28b9e2d6-5176-4a66-aff7-89599c340129] +module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-ab38f26e-b232-4e0c-82eb-077af0167d87] +module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-1eb1b040-5158-4dd7-ab9d-225267b43c89] +module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7] +module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d] +module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7] +ibm_is_subnet.subnet_zone_1: Refreshing state... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Refreshing state... [id=d1vjm9jo0mot2mfh0k0g] +module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Refreshing state... [id=crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::] +module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Reading... +module.ocp_base.data.ibm_container_addons.existing_addons: Reading... +module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Refreshing state... [id=d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb] +module.ocp_base.data.ibm_container_addons.existing_addons: Read complete after 1s [id=d1vjm9jo0mot2mfh0k0g] +module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Read complete after 6s [id=d1vjm9jo0mot2mfh0k0g] + +Terraform used the selected providers to generate the following execution +plan. Resource actions are indicated with the following symbols: + - destroy + +Terraform will perform the following actions: + + # ibm_is_public_gateway.gateway will be destroyed + - resource "ibm_is_public_gateway" "gateway" { + - access_tags = [] -> null + - crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::public-gateway:r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null + - floating_ip = { + - "address" = "163.68.87.241" + - "id" = "r034-6b0b9e27-710a-441e-95a7-f65086faee0a" + } -> null + - id = "r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null + - name = "base-ocp-customsg-fs5-gateway-1" -> null + - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/publicGateways" -> null + - resource_crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::public-gateway:r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null + - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_name = "geretain-test-base-ocp-vpc" -> null + - resource_name = "base-ocp-customsg-fs5-gateway-1" -> null + - resource_status = "available" -> null + - status = "available" -> null + - tags = [] -> null + - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + - zone = "jp-osa-1" -> null + } + + # ibm_is_subnet.subnet_zone_1 will be destroyed + - resource "ibm_is_subnet" "subnet_zone_1" { + - access_tags = [] -> null + - available_ipv4_address_count = 239 -> null + - crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::subnet:02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null + - id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null + - ip_version = "ipv4" -> null + - ipv4_cidr_block = "10.248.0.0/24" -> null + - name = "base-ocp-customsg-fs5-subnet-1" -> null + - network_acl = "r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null + - public_gateway = "r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null + - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/subnets" -> null + - resource_crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::subnet:02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null + - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_name = "geretain-test-base-ocp-vpc" -> null + - resource_name = "base-ocp-customsg-fs5-subnet-1" -> null + - resource_status = "available" -> null + - routing_table = "r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null + - routing_table_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc-routing-table:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea/r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null + - status = "available" -> null + - tags = [] -> null + - total_ipv4_address_count = 256 -> null + - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + - zone = "jp-osa-1" -> null + } + + # ibm_is_vpc.vpc will be destroyed + - resource "ibm_is_vpc" "vpc" { + - access_tags = [] -> null + - address_prefix_management = "auto" -> null + - classic_access = false -> null + - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + - cse_source_addresses = [ + - { + - address = "10.12.13.199" + - zone_name = "jp-osa-1" + }, + - { + - address = "10.12.32.25" + - zone_name = "jp-osa-2" + }, + - { + - address = "10.12.41.144" + - zone_name = "jp-osa-3" + }, + ] -> null + - default_address_prefixes = { + - "jp-osa-1" = "10.248.0.0/18" + - "jp-osa-2" = "10.248.64.0/18" + - "jp-osa-3" = "10.248.128.0/18" + } -> null + - default_network_acl = "r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null + - default_network_acl_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::network-acl:r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null + - default_network_acl_name = "botanist-oil-uncombed-canary" -> null + - default_routing_table = "r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null + - default_routing_table_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc-routing-table:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea/r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null + - default_routing_table_name = "unstable-hatchet-festivity-conjure" -> null + - default_security_group = "r034-2ce38964-206c-4961-a52a-84325930fc25" -> null + - default_security_group_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2ce38964-206c-4961-a52a-84325930fc25" -> null + - default_security_group_name = "postcard-satiable-unused-amount" -> null + - health_reasons = [] -> null + - health_state = "ok" -> null + - id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + - name = "base-ocp-customsg-fs5-vpc" -> null + - no_sg_acl_rules = false -> null + - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/vpcs" -> null + - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_name = "geretain-test-base-ocp-vpc" -> null + - resource_name = "base-ocp-customsg-fs5-vpc" -> null + - resource_status = "available" -> null + - security_group = [ + - { + - group_id = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" + - group_name = "kube-lbaas-d1vjm9jo0mot2mfh0k0g" + - rules = [ + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 30134 + - port_min = 30134 + - protocol = "tcp" + - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" + - rule_id = "r034-e11d240d-5951-4141-ba48-6c6c93096fa5" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 32203 + - port_min = 32203 + - protocol = "tcp" + - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" + - rule_id = "r034-725aea9c-421c-4836-bec7-d143adab3ec5" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 80 + - port_min = 80 + - protocol = "tcp" + - remote = "0.0.0.0/0" + - rule_id = "r034-5ee1c2d0-60a4-4913-9ee1-958ddd4850f1" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 443 + - port_min = 443 + - protocol = "tcp" + - remote = "0.0.0.0/0" + - rule_id = "r034-f5f890a3-abd6-4bfa-a646-59699d32efd0" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 443 + - port_min = 443 + - protocol = "tcp" + - remote = "163.68.87.241" + - rule_id = "r034-f7e0287e-0a1d-4ad5-b09f-32616fbd8146" + - type = 0 + }, + ] + }, + - { + - group_id = "r034-e94a7557-fb65-4158-8a88-d5a74899a20a" + - group_name = "kube-vpegw-d1vjm9jo0mot2mfh0k0g" + - rules = [ + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 32220 + - port_min = 32220 + - protocol = "tcp" + - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" + - rule_id = "r034-4bf5315f-e01e-4630-ba26-6e98a10aeec8" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 30160 + - port_min = 30160 + - protocol = "tcp" + - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" + - rule_id = "r034-61bbabbf-58f8-4b96-b198-65456be1a9df" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 30669 + - port_min = 30669 + - protocol = "tcp" + - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" + - rule_id = "r034-520e0d04-09fe-4368-8b33-4410927151b3" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 32220 + - port_min = 32220 + - protocol = "tcp" + - remote = "10.248.0.0/24" + - rule_id = "r034-77498c97-ff9f-46c3-b9eb-71227bbee5a5" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 30669 + - port_min = 30669 + - protocol = "tcp" + - remote = "10.248.0.0/24" + - rule_id = "r034-a112fed6-6ac9-419a-9e40-95517e86aef5" + - type = 0 + }, + ] + }, + - { + - group_id = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" + - group_name = "kube-d1vjm9jo0mot2mfh0k0g" + - rules = [ + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "161.26.0.0/16" + - rule_id = "r034-fc20c1b6-5f4c-499a-8ac0-2ecd56cf9b01" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "r034-d06d472b-939d-4ff7-baa6-275e440f817d" + - rule_id = "r034-8f00c08e-0baf-4af8-b224-33bfde9b0281" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "166.8.0.0/14" + - rule_id = "r034-6832e1ad-3dbb-427a-9cc5-2293e32ba006" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "166.9.251.2" + - rule_id = "r034-d1d7142c-de8f-43b9-ac67-ffbd847c1bfa" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "166.9.250.226" + - rule_id = "r034-d5b4e218-66c0-463b-878a-4b9af3166eb7" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "166.9.250.194" + - rule_id = "r034-fc5bc36d-088a-49ca-900c-40ceab763602" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "r034-e94a7557-fb65-4158-8a88-d5a74899a20a" + - rule_id = "r034-4f143879-dec5-42a7-9f1b-2e3346a11ef1" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" + - rule_id = "r034-550de43e-63af-4403-bb4f-3c98b23d7f40" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "172.17.0.0/18" + - rule_id = "r034-48cf28d5-c157-41ff-b8fb-492540b1f9ce" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "172.17.0.0/18" + - rule_id = "r034-3194d057-4369-45e3-9f18-4ec9b6a9ac9b" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" + - rule_id = "r034-f9c75a22-e09a-4080-9c9a-9d35b0849c7f" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "icmp" + - remote = "0.0.0.0/0" + - rule_id = "r034-cba515f3-78a8-4c40-be47-e9ea5c52c7a7" + - type = 8 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 30669 + - port_min = 30669 + - protocol = "tcp" + - remote = "163.73.64.250" + - rule_id = "r034-be2e9c54-088e-4463-9b19-c97e3d438cbd" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 30669 + - port_min = 30669 + - protocol = "tcp" + - remote = "163.68.69.114" + - rule_id = "r034-3473c753-7799-40d9-abce-1cfd60e88371" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 30669 + - port_min = 30669 + - protocol = "tcp" + - remote = "163.69.65.114" + - rule_id = "r034-b4c1c790-b651-4772-9c5b-48a4f152073d" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 30134 + - port_min = 30134 + - protocol = "tcp" + - remote = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" + - rule_id = "r034-2e949bfd-dd18-4ba1-b266-820126ffb378" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 32203 + - port_min = 32203 + - protocol = "tcp" + - remote = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" + - rule_id = "r034-659d96b8-f7ff-4932-ab96-76a6e9fe4820" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 443 + - port_min = 443 + - protocol = "tcp" + - remote = "163.68.90.13" + - rule_id = "r034-c18ea92b-0da9-4259-9541-232386cb6770" + - type = 0 + }, + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 443 + - port_min = 443 + - protocol = "tcp" + - remote = "163.68.93.113" + - rule_id = "r034-0ed4052e-28b3-4013-bfa0-6434dae34be0" + - type = 0 + }, + ] + }, + - { + - group_id = "r034-d06d472b-939d-4ff7-baa6-275e440f817d" + - group_name = "kube-vpegw-r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" + - rules = [ + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" + - rule_id = "r034-4a12c537-8e68-428e-aca7-4a530f9e8f33" + - type = 0 + }, + ] + }, + - { + - group_id = "r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" + - group_name = "custom-kube-api-vpe-sg" + - rules = [] + }, + - { + - group_id = "r034-28b9e2d6-5176-4a66-aff7-89599c340129" + - group_name = "custom-cluster-sg" + - rules = [] + }, + - { + - group_id = "r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" + - group_name = "custom-lb-sg" + - rules = [] + }, + - { + - group_id = "r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" + - group_name = "custom-registry-vpe-sg" + - rules = [] + }, + - { + - group_id = "r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" + - group_name = "custom-worker-pool-sg" + - rules = [] + }, + - { + - group_id = "r034-ab38f26e-b232-4e0c-82eb-077af0167d87" + - group_name = "custom-master-vpe-sg" + - rules = [] + }, + - { + - group_id = "r034-2ce38964-206c-4961-a52a-84325930fc25" + - group_name = "postcard-satiable-unused-amount" + - rules = [ + - { + - code = 0 + - direction = "outbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "0.0.0.0/0" + - rule_id = "r034-38bc3f6a-3900-41e4-9382-5825757b364c" + - type = 0 + }, + - { + - code = 0 + - direction = "inbound" + - ip_version = "ipv4" + - port_max = 0 + - port_min = 0 + - protocol = "all" + - remote = "r034-2ce38964-206c-4961-a52a-84325930fc25" + - rule_id = "r034-58e990ad-524c-476f-808a-8f781a32d767" + - type = 0 + }, + ] + }, + ] -> null + - status = "available" -> null + - subnets = [ + - { + - available_ipv4_address_count = 239 + - id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" + - name = "base-ocp-customsg-fs5-subnet-1" + - status = "available" + - total_ipv4_address_count = 256 + - zone = "jp-osa-1" + }, + ] -> null + - tags = [] -> null + + - dns { + - enable_hub = false -> null + - resolution_binding_count = 0 -> null + + - resolver { + - configuration = "private_resolver" -> null + - servers = [ + - { + - address = "161.26.0.7" + # (1 unchanged attribute hidden) + }, + - { + - address = "161.26.0.8" + # (1 unchanged attribute hidden) + }, + ] -> null + - type = "system" -> null + # (7 unchanged attributes hidden) + } + } + } + + # module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0] will be destroyed + - resource "ibm_is_security_group" "sg" { + - access_tags = [] -> null + - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null + - id = "r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null + - name = "custom-cluster-sg" -> null + - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null + - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null + - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_name = "geretain-test-base-ocp-vpc" -> null + - resource_name = "custom-cluster-sg" -> null + - rules = [] -> null + - tags = [] -> null + - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + } + + # module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed + - resource "ibm_is_security_group" "sg" { + - access_tags = [] -> null + - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null + - id = "r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null + - name = "custom-kube-api-vpe-sg" -> null + - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null + - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null + - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_name = "geretain-test-base-ocp-vpc" -> null + - resource_name = "custom-kube-api-vpe-sg" -> null + - rules = [] -> null + - tags = [] -> null + - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + } + + # module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0] will be destroyed + - resource "ibm_is_security_group" "sg" { + - access_tags = [] -> null + - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null + - id = "r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null + - name = "custom-lb-sg" -> null + - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null + - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null + - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_name = "geretain-test-base-ocp-vpc" -> null + - resource_name = "custom-lb-sg" -> null + - rules = [] -> null + - tags = [] -> null + - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + } + + # module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed + - resource "ibm_is_security_group" "sg" { + - access_tags = [] -> null + - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null + - id = "r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null + - name = "custom-master-vpe-sg" -> null + - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null + - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null + - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_name = "geretain-test-base-ocp-vpc" -> null + - resource_name = "custom-master-vpe-sg" -> null + - rules = [] -> null + - tags = [] -> null + - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + } + + # module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed + - resource "ibm_is_security_group" "sg" { + - access_tags = [] -> null + - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null + - id = "r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null + - name = "custom-registry-vpe-sg" -> null + - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null + - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null + - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_name = "geretain-test-base-ocp-vpc" -> null + - resource_name = "custom-registry-vpe-sg" -> null + - rules = [] -> null + - tags = [] -> null + - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + } + + # module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0] will be destroyed + - resource "ibm_is_security_group" "sg" { + - access_tags = [] -> null + - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null + - id = "r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null + - name = "custom-worker-pool-sg" -> null + - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null + - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null + - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_name = "geretain-test-base-ocp-vpc" -> null + - resource_name = "custom-worker-pool-sg" -> null + - rules = [] -> null + - tags = [] -> null + - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + } + + # module.ocp_base.ibm_container_vpc_cluster.cluster[0] will be destroyed + - resource "ibm_container_vpc_cluster" "cluster" { + - albs = [] -> null + - cos_instance_crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null + - crn = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null + - disable_outbound_traffic_protection = false -> null + - disable_public_service_endpoint = false -> null + - entitlement = "cloud_pak" -> null + - flavor = "bx2.4x16" -> null + - force_delete_storage = true -> null + - id = "d1vjm9jo0mot2mfh0k0g" -> null + - image_security_enforcement = false -> null + - ingress_hostname = "base-ocp-customsg-fs5-3b5bf5f75003778663c521c8c35ad277-0000.jp-osa.containers.appdomain.cloud" -> null + - ingress_secret = (sensitive value) -> null + - kube_version = "4.17.28_openshift" -> null + - master_status = "Ready" -> null + - master_url = "https://c101-e.jp-osa.containers.cloud.ibm.com:32220" -> null + - name = "base-ocp-customsg-fs5" -> null + - operating_system = "REDHAT_8_64" -> null + - pod_subnet = "172.17.0.0/18" -> null + - private_service_endpoint_url = "https://c101.private.jp-osa.containers.cloud.ibm.com:32220" -> null + - public_service_endpoint_url = "https://c101-e.jp-osa.containers.cloud.ibm.com:32220" -> null + - resource_controller_url = "https://cloud.ibm.com/kubernetes/clusters" -> null + - resource_crn = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null + - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_name = "geretain-test-base-ocp-vpc" -> null + - resource_name = "base-ocp-customsg-fs5" -> null + - resource_status = "normal" -> null + - security_groups = [ + - "cluster", + - "r034-28b9e2d6-5176-4a66-aff7-89599c340129", + ] -> null + - service_subnet = "172.21.0.0/16" -> null + - state = "normal" -> null + - tags = [] -> null + - update_all_workers = false -> null + - vpc_id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + - vpe_service_endpoint_url = "https://d1vjm9jo0mot2mfh0k0g.vpe.private.jp-osa.containers.cloud.ibm.com:32220" -> null + - wait_for_worker_update = true -> null + - wait_till = "IngressReady" -> null + - worker_count = 2 -> null + + - timeouts { + - create = "3h" -> null + - delete = "2h" -> null + - update = "3h" -> null + } + + - zones { + - name = "jp-osa-1" -> null + - subnet_id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null + } + } + + # module.ocp_base.ibm_container_vpc_worker_pool.pool["default"] will be destroyed + - resource "ibm_container_vpc_worker_pool" "pool" { + - autoscale_enabled = false -> null + - cluster = "d1vjm9jo0mot2mfh0k0g" -> null + - entitlement = "cloud_pak" -> null + - flavor = "bx2.4x16" -> null + - id = "d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb" -> null + - import_on_create = true -> null + - labels = {} -> null + - operating_system = "REDHAT_8_64" -> null + - orphan_on_delete = true -> null + - resource_controller_url = "https://cloud.ibm.com/kubernetes/clusters" -> null + - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - vpc_id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null + - worker_count = 2 -> null + - worker_pool_id = "d1vjm9jo0mot2mfh0k0g-44bcbfb" -> null + - worker_pool_name = "default" -> null + # (1 unchanged attribute hidden) + + - timeouts { + - create = "2h" -> null + - delete = "2h" -> null + } + + - zones { + - name = "jp-osa-1" -> null + - subnet_id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null + } + } + + # module.ocp_base.ibm_resource_tag.cluster_access_tag[0] will be destroyed + - resource "ibm_resource_tag" "cluster_access_tag" { + - id = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null + - replace = false -> null + - resource_id = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null + - tag_type = "access" -> null + - tags = [ + - "geretain-dev-1:permanent-test-tag-4", + - "geretain-dev:permanent-test-tag-1", + ] -> null + # (1 unchanged attribute hidden) + } + + # module.ocp_base.ibm_resource_tag.cos_access_tag[0] will be destroyed + - resource "ibm_resource_tag" "cos_access_tag" { + - id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null + - replace = false -> null + - resource_id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null + - tag_type = "access" -> null + - tags = [ + - "geretain-dev-1:permanent-test-tag-4", + - "geretain-dev:permanent-test-tag-1", + ] -> null + # (1 unchanged attribute hidden) + } + + # module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0] will be destroyed + - resource "ibm_resource_instance" "cos_instance" { + - account_id = "abac0df06b644a9cabc6e44f55b3880e" -> null + - allow_cleanup = false -> null + - created_at = "2025-07-22T07:16:38.175Z" -> null + - created_by = "IBMid-693000KKB0" -> null + - crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null + - dashboard_url = "https://cloud.ibm.com/objectstorage/crn%3Av1%3Abluemix%3Apublic%3Acloud-object-storage%3Aglobal%3Aa%2Fabac0df06b644a9cabc6e44f55b3880e%3Af6a5c310-bcff-4d3e-92b6-fb05dc9a0f32%3A%3A" -> null + - extensions = {} -> null + - guid = "f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32" -> null + - id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null + - last_operation = { + - "async" = "false" + - "cancelable" = "false" + - "description" = "Completed create instance operation" + - "poll" = "false" + - "state" = "succeeded" + - "type" = "create" + } -> null + - location = "global" -> null + - locked = false -> null + - name = "base-ocp-customsg-fs5_cos" -> null + - onetime_credentials = false -> null + - plan = "standard" -> null + - plan_history = [ + - { + - resource_plan_id = "744bfc56-d12c-4866-88d5-dac9139e0e5d" + - start_date = "2025-07-22T07:16:38.175Z" + }, + ] -> null + - resource_aliases_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_aliases" -> null + - resource_bindings_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_bindings" -> null + - resource_controller_url = "https://cloud.ibm.com/services/" -> null + - resource_crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null + - resource_group_crn = "crn:v1:bluemix:public:resource-controller::a/abac0df06b644a9cabc6e44f55b3880e::resource-group:ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_group_name = "crn:v1:bluemix:public:resource-controller::a/abac0df06b644a9cabc6e44f55b3880e::resource-group:ed293fd4909f4bc69b1e85324b8c39db" -> null + - resource_id = "dff97f5c-bc5e-4455-b470-411c3edbe49c" -> null + - resource_keys_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_keys" -> null + - resource_name = "base-ocp-customsg-fs5_cos" -> null + - resource_plan_id = "744bfc56-d12c-4866-88d5-dac9139e0e5d" -> null + - resource_status = "active" -> null + - service = "cloud-object-storage" -> null + - state = "active" -> null + - status = "active" -> null + - tags = [] -> null + - target_crn = "crn:v1:bluemix:public:globalcatalog::::deployment:744bfc56-d12c-4866-88d5-dac9139e0e5d%3Aglobal" -> null + - type = "service_instance" -> null + - update_at = "2025-07-22T07:16:40.426Z" -> null + # (5 unchanged attributes hidden) + } + +Plan: 0 to add, 0 to change, 14 to destroy. + +Changes to Outputs: + - cluster_name = "base-ocp-customsg-fs5" -> null +module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Destroying... [id=crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::] +module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Destroying... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] +module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Destroying... [id=d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb] +module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Destruction complete after 0s +module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Destruction complete after 2s +module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Destruction complete after 2s +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Destroying... [id=d1vjm9jo0mot2mfh0k0g] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 10s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 20s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 30s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 40s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 50s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m0s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m10s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m20s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m30s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m40s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m50s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m0s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m10s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m20s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m30s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m40s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m50s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m0s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m10s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m20s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m30s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m40s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m50s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m0s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m10s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m20s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m30s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m40s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m50s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m0s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m10s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m20s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m30s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m40s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m50s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m0s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m10s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m20s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m30s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m40s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m50s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m0s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m10s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m20s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m30s elapsed] +module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Destruction complete after 7m37s +module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7] +module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-ab38f26e-b232-4e0c-82eb-077af0167d87] +module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7] +module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d] +ibm_is_subnet.subnet_zone_1: Destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a] +module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Destroying... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] +module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-1eb1b040-5158-4dd7-ab9d-225267b43c89] +module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-28b9e2d6-5176-4a66-aff7-89599c340129] +module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s +module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s +module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s +module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s +module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s +module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Destruction complete after 10s +module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Still destroying... [id=crn:v1:bluemix:public:cloud-object-stor...f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::, 10s elapsed] +ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 10s elapsed] +ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 20s elapsed] +module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Still destroying... [id=crn:v1:bluemix:public:cloud-object-stor...f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::, 20s elapsed] +module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Destruction complete after 22s +ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 30s elapsed] +ibm_is_subnet.subnet_zone_1: Destruction complete after 33s +ibm_is_public_gateway.gateway: Destroying... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c] +ibm_is_public_gateway.gateway: Still destroying... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c, 10s elapsed] +ibm_is_public_gateway.gateway: Destruction complete after 11s +ibm_is_vpc.vpc: Destroying... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea] +ibm_is_vpc.vpc: Still destroying... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea, 10s elapsed] +ibm_is_vpc.vpc: Destruction complete after 13s + +Destroy complete! Resources: 14 destroyed. + +TestRunCustomsgExample 2025-07-22T13:41:26+05:30 tests.go:266: END: Destroy + pr_test.go:216: + Error Trace: /Users/aryagirishk/Desktop/quickstartocp/last/last/terraform-ibm-base-ocp-vpc/tests/pr_test.go:216 + Error: Expected nil, but got: retry.FatalError{Underlying:(*shell.ErrWithCmdOutput)(0x14000686060)} + Test: TestRunCustomsgExample + Messages: This should not have errored + pr_test.go:217: + Error Trace: /Users/aryagirishk/Desktop/quickstartocp/last/last/terraform-ibm-base-ocp-vpc/tests/pr_test.go:217 + Error: Expected value not to be nil. + Test: TestRunCustomsgExample + Messages: Expected some output +--- FAIL: TestRunCustomsgExample (3376.66s) +FAIL +exit status 1 +FAIL github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc 3379.241s diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index db2f5efe..80f16cda 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -63,7 +63,7 @@ variable "address_prefix" { variable "ocp_entitlement" { type = string description = "Value that is applied to the entitlements for OCP cluster provisioning" - default = null + default = "cloud_pak" } diff --git a/tests/pr_test.go b/tests/pr_test.go index a772d589..2155e319 100644 --- a/tests/pr_test.go +++ b/tests/pr_test.go @@ -86,8 +86,9 @@ func setupTerraform(t *testing.T, prefix, realTerraformDir string) *terraform.Op } func setupQuickstartOptions(t *testing.T, prefix string) *testschematic.TestSchematicOptions { options := testschematic.TestSchematicOptionsDefault(&testschematic.TestSchematicOptions{ - Testing: t, - Prefix: prefix, + Testing: t, + Prefix: prefix, + ResourceGroup: resourceGroup, TarIncludePatterns: []string{ "*.tf", quickStartTerraformDir + "/*.tf", From 1450622eed4bd8a863b8b51f890c016d19f16380 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Tue, 22 Jul 2025 15:50:27 +0530 Subject: [PATCH 05/32] Removed log file --- log.txt | 2940 ------------------------------------------------------- 1 file changed, 2940 deletions(-) delete mode 100644 log.txt diff --git a/log.txt b/log.txt deleted file mode 100644 index 73b385cf..00000000 --- a/log.txt +++ /dev/null @@ -1,2940 +0,0 @@ -cd tests && go test -run TestRunCustomsgExample -count=1 -v -timeout 600m -=== RUN TestRunCustomsgExample -=== PAUSE TestRunCustomsgExample -=== CONT TestRunCustomsgExample -2025/07/22 12:45:21 Region au-syd VPC count: 6 -2025/07/22 12:45:21 --- new best region is au-syd -2025/07/22 12:45:25 Region ca-tor VPC count: 9 -2025/07/22 12:45:29 Region br-sao VPC count: 6 -2025/07/22 12:45:34 Region eu-de VPC count: 9 -2025/07/22 12:45:38 Region eu-es VPC count: 10 -2025/07/22 12:45:43 Region eu-gb VPC count: 7 -2025/07/22 12:45:47 Region us-east VPC count: 18 -2025/07/22 12:45:50 Region us-south VPC count: 27 -2025/07/22 12:45:56 Region jp-osa VPC count: 4 -2025/07/22 12:45:56 --- new best region is jp-osa -2025/07/22 12:45:59 Region jp-tok VPC count: 7 -2025/07/22 12:45:59 Best region was found!: jp-osa -TestRunCustomsgExample 2025-07-22T12:45:59+05:30 tests.go:75: TEMP CREATED: /var/folders/vh/syq93zks0k38v_dhpnypz4hm0000gn/T/terraform-base-ocp-customsg-fs51954832040 -TestRunCustomsgExample 2025-07-22T12:45:59+05:30 tests.go:582: START: Init / Apply / Consistency Check -TestRunCustomsgExample 2025-07-22T12:45:59+05:30 tests.go:661: START: Init / Apply -TestRunCustomsgExample 2025-07-22T12:45:59+05:30 retry.go:91: terraform [init -upgrade=true] -TestRunCustomsgExample 2025-07-22T12:45:59+05:30 logger.go:67: Running command terraform with args [init -upgrade=true] -TestRunCustomsgExample 2025-07-22T12:45:59+05:30 logger.go:67: Initializing the backend... -TestRunCustomsgExample 2025-07-22T12:45:59+05:30 logger.go:67: Upgrading modules... -TestRunCustomsgExample 2025-07-22T12:46:00+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/security-group/ibm 2.7.0 for custom_sg... -TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - custom_sg in .terraform/modules/custom_sg -TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - ocp_base in ../.. -TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/security-group/ibm 2.7.0 for ocp_base.attach_sg_to_api_vpe... -TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - ocp_base.attach_sg_to_api_vpe in .terraform/modules/ocp_base.attach_sg_to_api_vpe -TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/security-group/ibm 2.7.0 for ocp_base.attach_sg_to_lb... -TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - ocp_base.attach_sg_to_lb in .terraform/modules/ocp_base.attach_sg_to_lb -TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/security-group/ibm 2.7.0 for ocp_base.attach_sg_to_master_vpe... -TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - ocp_base.attach_sg_to_master_vpe in .terraform/modules/ocp_base.attach_sg_to_master_vpe -TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/security-group/ibm 2.7.0 for ocp_base.attach_sg_to_registry_vpe... -TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: - ocp_base.attach_sg_to_registry_vpe in .terraform/modules/ocp_base.attach_sg_to_registry_vpe -TestRunCustomsgExample 2025-07-22T12:46:03+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/cbr/ibm 1.32.4 for ocp_base.cbr_rule... -TestRunCustomsgExample 2025-07-22T12:46:06+05:30 logger.go:67: - ocp_base.cbr_rule in .terraform/modules/ocp_base.cbr_rule/modules/cbr-rule-module -TestRunCustomsgExample 2025-07-22T12:46:06+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/cos/ibm 8.21.25 for ocp_base.cos_instance... -TestRunCustomsgExample 2025-07-22T12:46:09+05:30 logger.go:67: - ocp_base.cos_instance in .terraform/modules/ocp_base.cos_instance -TestRunCustomsgExample 2025-07-22T12:46:09+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/cbr/ibm 1.31.0 for ocp_base.cos_instance.bucket_cbr_rule... -TestRunCustomsgExample 2025-07-22T12:46:12+05:30 logger.go:67: - ocp_base.cos_instance.bucket_cbr_rule in .terraform/modules/ocp_base.cos_instance.bucket_cbr_rule/modules/cbr-rule-module -TestRunCustomsgExample 2025-07-22T12:46:12+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/cbr/ibm 1.31.0 for ocp_base.cos_instance.instance_cbr_rule... -TestRunCustomsgExample 2025-07-22T12:46:12+05:30 logger.go:67: - ocp_base.cos_instance.instance_cbr_rule in .terraform/modules/ocp_base.cos_instance.instance_cbr_rule/modules/cbr-rule-module -TestRunCustomsgExample 2025-07-22T12:46:12+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/common-utilities/ibm 1.2.0 for ocp_base.existing_secrets_manager_instance_parser... -TestRunCustomsgExample 2025-07-22T12:46:15+05:30 logger.go:67: - ocp_base.existing_secrets_manager_instance_parser in .terraform/modules/ocp_base.existing_secrets_manager_instance_parser/modules/crn-parser -TestRunCustomsgExample 2025-07-22T12:46:15+05:30 logger.go:67: Downloading registry.terraform.io/terraform-ibm-modules/resource-group/ibm 1.2.1 for resource_group... -TestRunCustomsgExample 2025-07-22T12:46:17+05:30 logger.go:67: - resource_group in .terraform/modules/resource_group -TestRunCustomsgExample 2025-07-22T12:46:17+05:30 logger.go:67: Initializing provider plugins... -TestRunCustomsgExample 2025-07-22T12:46:17+05:30 logger.go:67: - Finding ibm-cloud/ibm versions matching ">= 1.59.0, >= 1.70.0, >= 1.76.0, >= 1.78.2, >= 1.79.0, < 2.0.0"... -TestRunCustomsgExample 2025-07-22T12:46:17+05:30 logger.go:67: - Finding hashicorp/time versions matching ">= 0.9.1, < 1.0.0"... -TestRunCustomsgExample 2025-07-22T12:46:18+05:30 logger.go:67: - Finding hashicorp/null versions matching ">= 3.2.1, < 4.0.0"... -TestRunCustomsgExample 2025-07-22T12:46:18+05:30 logger.go:67: - Finding hashicorp/kubernetes versions matching ">= 2.16.1, < 3.0.0"... -TestRunCustomsgExample 2025-07-22T12:46:18+05:30 logger.go:67: - Finding hashicorp/random versions matching ">= 3.5.1, < 4.0.0"... -TestRunCustomsgExample 2025-07-22T12:46:20+05:30 logger.go:67: - Installing ibm-cloud/ibm v1.80.4... -TestRunCustomsgExample 2025-07-22T12:46:23+05:30 logger.go:67: - Installed ibm-cloud/ibm v1.80.4 (self-signed, key ID AAD3B791C49CC253) -TestRunCustomsgExample 2025-07-22T12:46:23+05:30 logger.go:67: - Installing hashicorp/time v0.13.1... -TestRunCustomsgExample 2025-07-22T12:46:24+05:30 logger.go:67: - Installed hashicorp/time v0.13.1 (signed by HashiCorp) -TestRunCustomsgExample 2025-07-22T12:46:24+05:30 logger.go:67: - Installing hashicorp/null v3.2.4... -TestRunCustomsgExample 2025-07-22T12:46:24+05:30 logger.go:67: - Installed hashicorp/null v3.2.4 (signed by HashiCorp) -TestRunCustomsgExample 2025-07-22T12:46:24+05:30 logger.go:67: - Installing hashicorp/kubernetes v2.38.0... -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: - Installed hashicorp/kubernetes v2.38.0 (signed by HashiCorp) -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: - Installing hashicorp/random v3.7.2... -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: - Installed hashicorp/random v3.7.2 (signed by HashiCorp) -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: Partner and community providers are signed by their developers. -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: If you'd like to know more about provider signing, you can read about it here: -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: https://www.terraform.io/docs/cli/plugins/signing.html -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: Terraform has created a lock file .terraform.lock.hcl to record the provider -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: selections it made above. Include this file in your version control repository -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: so that Terraform can guarantee to make the same selections by default when -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: you run "terraform init" in the future. -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: Terraform has been successfully initialized! -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67:  -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: You may now begin working with Terraform. Try running "terraform plan" to see -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: any changes that are required for your infrastructure. All Terraform commands -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: should now work. -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: If you ever set or change modules or backend configuration for Terraform, -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: rerun this command to reinitialize your working directory. If you forget, other -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: commands will detect it and remind you to do so if necessary. -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 retry.go:91: terraform [apply -input=false -auto-approve -var ocp_version=4.17 -var access_tags=["geretain-dev:permanent-test-tag-1", "geretain-dev-1:permanent-test-tag-4"] -var ocp_entitlement=cloud_pak -var prefix=base-ocp-customsg-fs5 -var region=jp-osa -var resource_group=geretain-test-base-ocp-vpc -var resource_tags=[] -lock=false] -TestRunCustomsgExample 2025-07-22T12:46:26+05:30 logger.go:67: Running command terraform with args [apply -input=false -auto-approve -var ocp_version=4.17 -var access_tags=["geretain-dev:permanent-test-tag-1", "geretain-dev-1:permanent-test-tag-4"] -var ocp_entitlement=cloud_pak -var prefix=base-ocp-customsg-fs5 -var region=jp-osa -var resource_group=geretain-test-base-ocp-vpc -var resource_tags=[] -lock=false] -TestRunCustomsgExample 2025-07-22T12:46:31+05:30 logger.go:67: module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Reading... -TestRunCustomsgExample 2025-07-22T12:46:31+05:30 logger.go:67: module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Reading... -TestRunCustomsgExample 2025-07-22T12:46:31+05:30 logger.go:67: module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Reading... -TestRunCustomsgExample 2025-07-22T12:46:31+05:30 logger.go:67: module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Read complete after 0s [id=2025-07-22 07:16:31.227899 +0000 UTC] -TestRunCustomsgExample 2025-07-22T12:46:32+05:30 logger.go:67: module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Read complete after 1s [id=ed293fd4909f4bc69b1e85324b8c39db] -TestRunCustomsgExample 2025-07-22T12:46:32+05:30 logger.go:67: module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Reading... -TestRunCustomsgExample 2025-07-22T12:46:32+05:30 logger.go:67: module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Read complete after 1s [id=abac0df06b644a9cabc6e44f55b3880e] -TestRunCustomsgExample 2025-07-22T12:46:33+05:30 logger.go:67: module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Read complete after 1s [id=2025-07-22 07:16:33.28042 +0000 UTC] -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: Terraform used the selected providers to generate the following execution -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: plan. Resource actions are indicated with the following symbols: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + create -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: <= read (data resources) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: Terraform will perform the following actions: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # ibm_is_public_gateway.gateway will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_public_gateway" "gateway" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + floating_ip = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "base-ocp-customsg-fs5-gateway-1" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_status = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + status = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zone = "jp-osa-1" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # ibm_is_subnet.subnet_zone_1 will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_subnet" "subnet_zone_1" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + available_ipv4_address_count = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ipv4_cidr_block = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "base-ocp-customsg-fs5-subnet-1" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + network_acl = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + public_gateway = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_status = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + routing_table = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + routing_table_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + status = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + total_ipv4_address_count = 256 -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zone = "jp-osa-1" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # ibm_is_vpc.vpc will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_vpc" "vpc" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + address_prefix_management = "auto" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + classic_access = false -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cse_source_addresses = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_address_prefixes = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_network_acl = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_network_acl_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_network_acl_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_routing_table = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_routing_table_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_routing_table_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_security_group = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_security_group_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + default_security_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + health_reasons = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + health_state = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "base-ocp-customsg-fs5-vpc" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + no_sg_acl_rules = false -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_status = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_group = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + status = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + subnets = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + dns (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-cluster-sg" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-kube-api-vpe-sg" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-lb-sg" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-master-vpe-sg" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-registry-vpe-sg" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "custom-worker-pool-sg" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + rules = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_container_addons.existing_addons will be read during apply -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_container_addons" "existing_addons" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + addons = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_container_cluster_config.cluster_config[0] will be read during apply -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_container_cluster_config" "cluster_config" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + admin = true -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + admin_certificate = (sensitive value) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + admin_key = (sensitive value) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ca_certificate = (sensitive value) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + calico_config_file_path = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster_name_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + config_dir = "../../kubeconfig" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + config_file_path = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + host = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + token = (sensitive value) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_container_vpc_worker_pool.all_pools["custom-sg"] will be read during apply -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_container_vpc_worker_pool" "all_pools" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + autoscale_enabled = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crk = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + flavor = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + host_pool_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + isolation = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + kms_account_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + kms_instance_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + labels = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + operating_system = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + secondary_storage = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_count = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_name = "custom-sg" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zones = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_container_vpc_worker_pool.all_pools["default"] will be read during apply -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_container_vpc_worker_pool" "all_pools" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + autoscale_enabled = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crk = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + flavor = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + host_pool_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + isolation = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + kms_account_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + kms_instance_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + labels = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + operating_system = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + secondary_storage = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_count = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_name = "default" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zones = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_is_lbs.all_lbs[0] will be read during apply -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (depends on a resource or a module with changes pending) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_is_lbs" "all_lbs" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + load_balancers = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_is_virtual_endpoint_gateway.api_vpe[0] will be read during apply -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_is_virtual_endpoint_gateway" "api_vpe" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + allow_dns_resolution_binding = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + created_at = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + health_state = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ips = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_reasons = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_state = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_groups = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service_endpoints = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_is_virtual_endpoint_gateway.master_vpe[0] will be read during apply -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_is_virtual_endpoint_gateway" "master_vpe" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + allow_dns_resolution_binding = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + created_at = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + health_state = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ips = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_reasons = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_state = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_groups = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service_endpoints = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.data.ibm_is_virtual_endpoint_gateway.registry_vpe[0] will be read during apply -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: # (config refers to values not yet known) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  <= data "ibm_is_virtual_endpoint_gateway" "registry_vpe" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + access_tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + allow_dns_resolution_binding = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + created_at = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + health_state = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ips = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_reasons = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + lifecycle_state = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_groups = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service_endpoints = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_container_addons.addons will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_container_addons" "addons" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + manage_all_addons = false -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + managed_addons = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + addons (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + timeouts { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + create = "1h" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_container_vpc_cluster.cluster[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_container_vpc_cluster" "cluster" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + albs = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cos_instance_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + disable_outbound_traffic_protection = false -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + disable_public_service_endpoint = false -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + entitlement = "cloud_pak" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + flavor = "bx2.4x16" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + force_delete_storage = true -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + image_security_enforcement = false -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ingress_hostname = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + ingress_secret = (sensitive value) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + kube_version = "4.17_openshift" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + master_status = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + master_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "base-ocp-customsg-fs5" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + operating_system = "REDHAT_8_64" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + pod_subnet = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + private_service_endpoint_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + public_service_endpoint_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_status = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + secondary_storage = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_groups = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service_subnet = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + state = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + update_all_workers = false -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpe_service_endpoint_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + wait_for_worker_update = true -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + wait_till = "IngressReady" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_count = 2 -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_labels = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + timeouts { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + create = "3h" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + delete = "2h" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + update = "3h" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zones { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "jp-osa-1" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + subnet_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_container_vpc_worker_pool" "pool" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + autoscale_enabled = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + entitlement = "cloud_pak" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + flavor = "bx2.4x16" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + labels = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + operating_system = "REDHAT_8_64" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_groups = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_count = 2 -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_name = "custom-sg" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + taints (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + timeouts { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + create = "2h" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + delete = "2h" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zones { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "jp-osa-1" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + subnet_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_container_vpc_worker_pool.pool["default"] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_container_vpc_worker_pool" "pool" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + autoscale_enabled = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + entitlement = "cloud_pak" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + flavor = "bx2.4x16" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + import_on_create = true -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + labels = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + operating_system = "REDHAT_8_64" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + orphan_on_delete = true -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + vpc_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_count = 2 -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + worker_pool_name = "default" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + taints (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + timeouts { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + create = "2h" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + delete = "2h" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + zones { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "jp-osa-1" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + subnet_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_resource_tag.cluster_access_tag[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_resource_tag" "cluster_access_tag" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + account_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + replace = false -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tag_type = "access" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = [ -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + "geretain-dev-1:permanent-test-tag-4", -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + "geretain-dev:permanent-test-tag-1", -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: ] -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.ibm_resource_tag.cos_access_tag[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_resource_tag" "cos_access_tag" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + account_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + replace = false -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tag_type = "access" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = [ -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + "geretain-dev-1:permanent-test-tag-4", -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + "geretain-dev:permanent-test-tag-1", -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: ] -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.null_resource.confirm_network_healthy[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "null_resource" "confirm_network_healthy" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.null_resource.reset_api_key will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "null_resource" "reset_api_key" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.module.attach_sg_to_api_vpe[0].ibm_is_security_group_target.sg_target[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group_target" "sg_target" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_group = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.module.attach_sg_to_lb[0].ibm_is_security_group_target.sg_target[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group_target" "sg_target" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_group = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.module.attach_sg_to_master_vpe[0].ibm_is_security_group_target.sg_target[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group_target" "sg_target" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_group = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.module.attach_sg_to_registry_vpe[0].ibm_is_security_group_target.sg_target[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_is_security_group_target" "sg_target" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_type = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + security_group = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  # module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0] will be created -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  + resource "ibm_resource_instance" "cos_instance" { -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + account_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + allow_cleanup = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + created_at = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + created_by = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + dashboard_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + deleted_at = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + deleted_by = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + extensions = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + guid = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + last_operation = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + location = "global" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + locked = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + name = "base-ocp-customsg-fs5_cos" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + onetime_credentials = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + plan = "standard" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + plan_history = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_aliases_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_bindings_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_controller_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_group_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_keys_url = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_name = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_plan_id = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + resource_status = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + restored_at = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + restored_by = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + scheduled_reclaim_at = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + scheduled_reclaim_by = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service = "cloud-object-storage" -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + service_endpoints = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + state = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + status = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + sub_type = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + tags = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + target_crn = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + type = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + update_at = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + update_by = (known after apply) -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: } -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: Plan: 22 to add, 0 to change, 0 to destroy. -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67:  -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: Changes to Outputs: -TestRunCustomsgExample 2025-07-22T12:46:34+05:30 logger.go:67: + cluster_name = "base-ocp-customsg-fs5" -TestRunCustomsgExample 2025-07-22T12:46:35+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key: Creating... -TestRunCustomsgExample 2025-07-22T12:46:35+05:30 logger.go:67: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Creating... -TestRunCustomsgExample 2025-07-22T12:46:35+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key: Provisioning with 'local-exec'... -TestRunCustomsgExample 2025-07-22T12:46:35+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key (local-exec): Executing: ["/bin/bash" "-c" "../../scripts/reset_iks_api_key.sh jp-osa ed293fd4909f4bc69b1e85324b8c39db false default"] -TestRunCustomsgExample 2025-07-22T12:46:37+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key (local-exec): Found key named containers-kubernetes-key which covers clusters in jp-osa and resource group ID ed293fd4909f4bc69b1e85324b8c39db -TestRunCustomsgExample 2025-07-22T12:46:37+05:30 logger.go:67: ibm_is_vpc.vpc: Creating... -TestRunCustomsgExample 2025-07-22T12:46:38+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key (local-exec): Found key named containers-kubernetes-key which covers clusters in jp-osa and resource group ID ed293fd4909f4bc69b1e85324b8c39db -TestRunCustomsgExample 2025-07-22T12:46:39+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key (local-exec): Found key named containers-kubernetes-key which covers clusters in jp-osa and resource group ID ed293fd4909f4bc69b1e85324b8c39db -TestRunCustomsgExample 2025-07-22T12:46:39+05:30 logger.go:67: module.ocp_base.null_resource.reset_api_key: Creation complete after 3s [id=3053990436515595810] -TestRunCustomsgExample 2025-07-22T12:46:45+05:30 logger.go:67: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Still creating... [10s elapsed] -TestRunCustomsgExample 2025-07-22T12:46:47+05:30 logger.go:67: ibm_is_vpc.vpc: Still creating... [10s elapsed] -TestRunCustomsgExample 2025-07-22T12:46:52+05:30 logger.go:67: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Creation complete after 17s [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] -TestRunCustomsgExample 2025-07-22T12:46:52+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Creating... -TestRunCustomsgExample 2025-07-22T12:46:57+05:30 logger.go:67: ibm_is_vpc.vpc: Still creating... [20s elapsed] -TestRunCustomsgExample 2025-07-22T12:47:02+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Still creating... [10s elapsed] -TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: ibm_is_vpc.vpc: Creation complete after 26s [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea] -TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Creating... -TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: ibm_is_public_gateway.gateway: Creating... -TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Creating... -TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Creating... -TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Creating... -TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Creating... -TestRunCustomsgExample 2025-07-22T12:47:04+05:30 logger.go:67: module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Creating... -TestRunCustomsgExample 2025-07-22T12:47:06+05:30 logger.go:67: module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Creation complete after 2s [id=r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7] -TestRunCustomsgExample 2025-07-22T12:47:06+05:30 logger.go:67: module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Creation complete after 2s [id=r034-ab38f26e-b232-4e0c-82eb-077af0167d87] -TestRunCustomsgExample 2025-07-22T12:47:07+05:30 logger.go:67: module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Creation complete after 2s [id=r034-1eb1b040-5158-4dd7-ab9d-225267b43c89] -TestRunCustomsgExample 2025-07-22T12:47:07+05:30 logger.go:67: module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Creation complete after 2s [id=r034-28b9e2d6-5176-4a66-aff7-89599c340129] -TestRunCustomsgExample 2025-07-22T12:47:07+05:30 logger.go:67: module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Creation complete after 3s [id=r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7] -TestRunCustomsgExample 2025-07-22T12:47:10+05:30 logger.go:67: module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Creation complete after 6s [id=r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d] -TestRunCustomsgExample 2025-07-22T12:47:12+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Still creating... [20s elapsed] -TestRunCustomsgExample 2025-07-22T12:47:14+05:30 logger.go:67: ibm_is_public_gateway.gateway: Still creating... [10s elapsed] -TestRunCustomsgExample 2025-07-22T12:47:19+05:30 logger.go:67: ibm_is_public_gateway.gateway: Creation complete after 15s [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c] -TestRunCustomsgExample 2025-07-22T12:47:20+05:30 logger.go:67: ibm_is_subnet.subnet_zone_1: Creating... -TestRunCustomsgExample 2025-07-22T12:47:22+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Still creating... [30s elapsed] -TestRunCustomsgExample 2025-07-22T12:47:24+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Creation complete after 31s [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] -TestRunCustomsgExample 2025-07-22T12:47:30+05:30 logger.go:67: ibm_is_subnet.subnet_zone_1: Still creating... [10s elapsed] -TestRunCustomsgExample 2025-07-22T12:47:32+05:30 logger.go:67: ibm_is_subnet.subnet_zone_1: Creation complete after 13s [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a] -TestRunCustomsgExample 2025-07-22T12:47:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Creating... -TestRunCustomsgExample 2025-07-22T12:47:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10s elapsed] -TestRunCustomsgExample 2025-07-22T12:47:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20s elapsed] -TestRunCustomsgExample 2025-07-22T12:48:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30s elapsed] -TestRunCustomsgExample 2025-07-22T12:48:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40s elapsed] -TestRunCustomsgExample 2025-07-22T12:48:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [50s elapsed] -TestRunCustomsgExample 2025-07-22T12:48:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:48:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:48:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m20s elapsed] -TestRunCustomsgExample 2025-07-22T12:49:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m30s elapsed] -TestRunCustomsgExample 2025-07-22T12:49:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m40s elapsed] -TestRunCustomsgExample 2025-07-22T12:49:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [1m50s elapsed] -TestRunCustomsgExample 2025-07-22T12:49:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:49:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:49:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m20s elapsed] -TestRunCustomsgExample 2025-07-22T12:50:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m30s elapsed] -TestRunCustomsgExample 2025-07-22T12:50:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m40s elapsed] -TestRunCustomsgExample 2025-07-22T12:50:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [2m50s elapsed] -TestRunCustomsgExample 2025-07-22T12:50:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:50:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:50:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m20s elapsed] -TestRunCustomsgExample 2025-07-22T12:51:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m30s elapsed] -TestRunCustomsgExample 2025-07-22T12:51:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m40s elapsed] -TestRunCustomsgExample 2025-07-22T12:51:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [3m50s elapsed] -TestRunCustomsgExample 2025-07-22T12:51:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:51:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:51:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m20s elapsed] -TestRunCustomsgExample 2025-07-22T12:52:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m30s elapsed] -TestRunCustomsgExample 2025-07-22T12:52:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m40s elapsed] -TestRunCustomsgExample 2025-07-22T12:52:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [4m50s elapsed] -TestRunCustomsgExample 2025-07-22T12:52:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:52:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:52:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m20s elapsed] -TestRunCustomsgExample 2025-07-22T12:53:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m30s elapsed] -TestRunCustomsgExample 2025-07-22T12:53:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m40s elapsed] -TestRunCustomsgExample 2025-07-22T12:53:22+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [5m50s elapsed] -TestRunCustomsgExample 2025-07-22T12:53:32+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:53:42+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:53:52+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m20s elapsed] -TestRunCustomsgExample 2025-07-22T12:54:02+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m30s elapsed] -TestRunCustomsgExample 2025-07-22T12:54:12+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m40s elapsed] -TestRunCustomsgExample 2025-07-22T12:54:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [6m50s elapsed] -TestRunCustomsgExample 2025-07-22T12:54:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:54:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:54:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m20s elapsed] -TestRunCustomsgExample 2025-07-22T12:55:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m30s elapsed] -TestRunCustomsgExample 2025-07-22T12:55:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m40s elapsed] -TestRunCustomsgExample 2025-07-22T12:55:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [7m50s elapsed] -TestRunCustomsgExample 2025-07-22T12:55:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:55:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:55:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m20s elapsed] -TestRunCustomsgExample 2025-07-22T12:56:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m30s elapsed] -TestRunCustomsgExample 2025-07-22T12:56:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m40s elapsed] -TestRunCustomsgExample 2025-07-22T12:56:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [8m50s elapsed] -TestRunCustomsgExample 2025-07-22T12:56:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:56:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:56:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m20s elapsed] -TestRunCustomsgExample 2025-07-22T12:57:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m30s elapsed] -TestRunCustomsgExample 2025-07-22T12:57:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m40s elapsed] -TestRunCustomsgExample 2025-07-22T12:57:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [9m50s elapsed] -TestRunCustomsgExample 2025-07-22T12:57:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:57:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:57:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m20s elapsed] -TestRunCustomsgExample 2025-07-22T12:58:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m30s elapsed] -TestRunCustomsgExample 2025-07-22T12:58:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m40s elapsed] -TestRunCustomsgExample 2025-07-22T12:58:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [10m50s elapsed] -TestRunCustomsgExample 2025-07-22T12:58:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:58:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:58:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m20s elapsed] -TestRunCustomsgExample 2025-07-22T12:59:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m30s elapsed] -TestRunCustomsgExample 2025-07-22T12:59:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m40s elapsed] -TestRunCustomsgExample 2025-07-22T12:59:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [11m50s elapsed] -TestRunCustomsgExample 2025-07-22T12:59:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m0s elapsed] -TestRunCustomsgExample 2025-07-22T12:59:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m10s elapsed] -TestRunCustomsgExample 2025-07-22T12:59:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:00:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:00:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:00:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [12m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:00:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:00:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:00:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:01:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:01:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:01:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [13m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:01:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:01:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:01:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:02:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:02:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:02:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [14m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:02:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:02:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:02:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:03:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:03:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:03:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [15m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:03:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:03:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:03:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:04:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:04:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:04:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [16m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:04:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:04:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:04:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:05:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:05:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:05:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [17m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:05:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:05:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:05:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:06:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:06:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:06:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [18m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:06:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:06:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:06:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:07:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:07:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:07:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [19m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:07:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:07:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:07:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:08:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:08:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:08:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [20m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:08:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:08:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:08:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:09:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:09:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:09:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [21m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:09:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:09:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:09:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:10:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:10:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:10:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [22m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:10:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:10:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:10:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:11:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:11:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:11:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [23m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:11:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:11:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:11:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:12:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:12:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:12:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [24m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:12:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:12:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:12:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:13:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:13:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:13:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [25m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:13:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:13:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:13:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:14:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:14:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:14:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [26m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:14:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:14:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:14:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:15:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:15:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:15:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [27m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:15:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:15:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:15:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:16:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:16:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:16:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [28m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:16:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:16:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:16:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:17:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:17:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:17:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [29m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:17:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:17:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:17:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:18:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:18:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:18:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [30m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:18:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:18:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:18:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:19:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:19:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:19:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [31m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:19:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:19:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:19:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:20:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:20:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:20:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [32m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:20:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:20:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:20:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:21:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:21:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:21:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [33m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:21:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:21:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:21:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:22:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:22:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:22:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [34m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:22:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:22:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:22:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:23:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:23:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:23:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [35m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:23:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:23:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:23:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:24:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:24:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:24:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [36m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:24:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:24:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:24:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:25:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:25:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:25:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [37m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:25:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:25:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:25:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:26:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:26:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:26:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [38m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:26:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:26:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:26:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:27:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:27:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:27:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [39m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:27:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:27:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:27:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:28:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:28:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:28:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [40m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:28:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:28:43+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:28:53+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:29:03+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:29:13+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:29:23+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [41m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:29:33+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still creating... [42m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Creation complete after 42m2s [id=d1vjm9jo0mot2mfh0k0g] -TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Reading... -TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.data.ibm_container_addons.existing_addons: Reading... -TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Creating... -TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Creating... -TestRunCustomsgExample 2025-07-22T13:29:34+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Creating... -TestRunCustomsgExample 2025-07-22T13:29:37+05:30 logger.go:67: module.ocp_base.data.ibm_container_addons.existing_addons: Read complete after 2s [id=d1vjm9jo0mot2mfh0k0g] -TestRunCustomsgExample 2025-07-22T13:29:41+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Creation complete after 7s [id=d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb] -TestRunCustomsgExample 2025-07-22T13:29:42+05:30 logger.go:67: module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Read complete after 7s [id=d1vjm9jo0mot2mfh0k0g] -TestRunCustomsgExample 2025-07-22T13:29:44+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Still creating... [10s elapsed] -TestRunCustomsgExample 2025-07-22T13:29:44+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [10s elapsed] -TestRunCustomsgExample 2025-07-22T13:29:54+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [20s elapsed] -TestRunCustomsgExample 2025-07-22T13:29:54+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Still creating... [20s elapsed] -TestRunCustomsgExample 2025-07-22T13:30:04+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Still creating... [30s elapsed] -TestRunCustomsgExample 2025-07-22T13:30:04+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [30s elapsed] -TestRunCustomsgExample 2025-07-22T13:30:09+05:30 logger.go:67: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Creation complete after 34s [id=crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::] -TestRunCustomsgExample 2025-07-22T13:30:14+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [40s elapsed] -TestRunCustomsgExample 2025-07-22T13:30:24+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [50s elapsed] -TestRunCustomsgExample 2025-07-22T13:30:34+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:30:44+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:30:54+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:31:04+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:31:14+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:31:24+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [1m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:31:34+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [2m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:31:44+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [2m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:31:54+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [2m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:32:04+05:30 logger.go:67: module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"]: Still creating... [2m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: ╷ -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ Error: Post "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: read: no route to host -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  with module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"], -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  on ../../main.tf line 340, in resource "ibm_container_vpc_worker_pool" "pool": -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  340: resource "ibm_container_vpc_worker_pool" "pool" { -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ --- -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ id: terraform-4b844566 -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ summary: 'Post -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  read: no route to host' -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ severity: error -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ resource: ibm_container_vpc_worker_pool -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ operation: create -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ component: -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  name: github.com/IBM-Cloud/terraform-provider-ibm -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  version: 1.80.3 -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │ --- -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: │  -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 logger.go:67: ╵ -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 retry.go:99: Returning due to fatal error: FatalError{Underlying: error while running command: exit status 1; ╷ -│ Error: Post "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: read: no route to host -│  -│  with module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"], -│  on ../../main.tf line 340, in resource "ibm_container_vpc_worker_pool" "pool": -│  340: resource "ibm_container_vpc_worker_pool" "pool" { -│  -│ --- -│ id: terraform-4b844566 -│ summary: 'Post -│ "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": -│  read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: -│  read: no route to host' -│ severity: error -│ resource: ibm_container_vpc_worker_pool -│ operation: create -│ component: -│  name: github.com/IBM-Cloud/terraform-provider-ibm -│  version: 1.80.3 -│ --- -│  -╵} - tests.go:663: - Error Trace: /Users/aryagirishk/go/pkg/mod/github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper@v1.55.7/testhelper/tests.go:663 - /Users/aryagirishk/go/pkg/mod/github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper@v1.55.7/testhelper/tests.go:583 - /Users/aryagirishk/Desktop/quickstartocp/last/last/terraform-ibm-base-ocp-vpc/tests/pr_test.go:214 - Error: Expected nil, but got: retry.FatalError{Underlying:(*shell.ErrWithCmdOutput)(0x14000686060)} - Test: TestRunCustomsgExample - Messages: Failed%!(EXTRA retry.FatalError=FatalError{Underlying: error while running command: exit status 1; ╷ - │ Error: Post "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: read: no route to host - │  - │  with module.ocp_base.ibm_container_vpc_worker_pool.pool["custom-sg"], - │  on ../../main.tf line 340, in resource "ibm_container_vpc_worker_pool" "pool": - │  340: resource "ibm_container_vpc_worker_pool" "pool" { - │  - │ --- - │ id: terraform-4b844566 - │ summary: 'Post - │ "https://containers.cloud.ibm.com/global/v2/vpc/createWorkerPool": - │  read tcp [2406:7400:94:505b:4d21:37fa:adf3:4050]:53598->[2600:140f:5e00:83::17d3:8e70]:443: - │  read: no route to host' - │ severity: error - │ resource: ibm_container_vpc_worker_pool - │ operation: create - │ component: - │  name: github.com/IBM-Cloud/terraform-provider-ibm - │  version: 1.80.3 - │ --- - │  - ╵}) -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 tests.go:664: FINISHED: Init / Apply -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 retry.go:91: terraform [output -no-color -json] -2025/07/22 13:32:11 Removing module.ocp_base.null_resource.confirm_network_healthy from Statefile /var/folders/vh/syq93zks0k38v_dhpnypz4hm0000gn/T/terraform-base-ocp-customsg-fs51954832040/examples/custom_sg/terraform.tfstate -2025/07/22 13:32:11 Executing: terraform state rm module.ocp_base.null_resource.confirm_network_healthy -TestRunCustomsgExample 2025-07-22T13:32:11+05:30 tests.go:157: ╷ -│ Error: Invalid target address -│  -│ No matching objects found. To view the available instances, use "terraform -│ state list". Please modify the address to reference a specific instance. -╵ - - -2025/07/22 13:32:11 Removing module.ocp_base.null_resource.reset_api_key from Statefile /var/folders/vh/syq93zks0k38v_dhpnypz4hm0000gn/T/terraform-base-ocp-customsg-fs51954832040/examples/custom_sg/terraform.tfstate -2025/07/22 13:32:11 Executing: terraform state rm module.ocp_base.null_resource.reset_api_key -TestRunCustomsgExample 2025-07-22T13:32:12+05:30 tests.go:157: Removed module.ocp_base.null_resource.reset_api_key -Successfully removed 1 resource instance(s). - -TestRunCustomsgExample 2025-07-22T13:32:12+05:30 tests.go:196: START: Destroy -TestRunCustomsgExample 2025-07-22T13:32:12+05:30 retry.go:91: terraform [destroy -auto-approve -input=false -var resource_tags=[] -var ocp_version=4.17 -var access_tags=["geretain-dev:permanent-test-tag-1", "geretain-dev-1:permanent-test-tag-4"] -var ocp_entitlement=cloud_pak -var prefix=base-ocp-customsg-fs5 -var region=jp-osa -var resource_group=geretain-test-base-ocp-vpc -lock=false] -TestRunCustomsgExample 2025-07-22T13:32:12+05:30 command.go:121: Running command terraform with args [destroy -auto-approve -input=false -var resource_tags=[] -var ocp_version=4.17 -var access_tags=["geretain-dev:permanent-test-tag-1", "geretain-dev-1:permanent-test-tag-4"] -var ocp_entitlement=cloud_pak -var prefix=base-ocp-customsg-fs5 -var region=jp-osa -var resource_group=geretain-test-base-ocp-vpc -lock=false] -TestRunCustomsgExample 2025-07-22T13:32:13+05:30 command.go:206: module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Reading... -TestRunCustomsgExample 2025-07-22T13:32:13+05:30 command.go:206: module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Reading... -TestRunCustomsgExample 2025-07-22T13:32:13+05:30 command.go:206: module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Reading... -TestRunCustomsgExample 2025-07-22T13:32:13+05:30 command.go:206: module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Read complete after 0s [id=2025-07-22 08:02:13.896336 +0000 UTC] -TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Read complete after 1s [id=ed293fd4909f4bc69b1e85324b8c39db] -TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Reading... -TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Refreshing state... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] -TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: ibm_is_vpc.vpc: Refreshing state... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea] -TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Read complete after 1s [id=abac0df06b644a9cabc6e44f55b3880e] -TestRunCustomsgExample 2025-07-22T13:32:15+05:30 command.go:206: module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Read complete after 1s [id=2025-07-22 08:02:15.733671 +0000 UTC] -TestRunCustomsgExample 2025-07-22T13:32:17+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Refreshing state... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] -TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: ibm_is_public_gateway.gateway: Refreshing state... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c] -TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-28b9e2d6-5176-4a66-aff7-89599c340129] -TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-ab38f26e-b232-4e0c-82eb-077af0167d87] -TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-1eb1b040-5158-4dd7-ab9d-225267b43c89] -TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7] -TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d] -TestRunCustomsgExample 2025-07-22T13:32:29+05:30 command.go:206: module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7] -TestRunCustomsgExample 2025-07-22T13:32:35+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Refreshing state... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a] -TestRunCustomsgExample 2025-07-22T13:32:37+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Refreshing state... [id=d1vjm9jo0mot2mfh0k0g] -TestRunCustomsgExample 2025-07-22T13:32:42+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Refreshing state... [id=crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::] -TestRunCustomsgExample 2025-07-22T13:32:42+05:30 command.go:206: module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Reading... -TestRunCustomsgExample 2025-07-22T13:32:42+05:30 command.go:206: module.ocp_base.data.ibm_container_addons.existing_addons: Reading... -TestRunCustomsgExample 2025-07-22T13:32:42+05:30 command.go:206: module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Refreshing state... [id=d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb] -TestRunCustomsgExample 2025-07-22T13:32:44+05:30 command.go:206: module.ocp_base.data.ibm_container_addons.existing_addons: Read complete after 1s [id=d1vjm9jo0mot2mfh0k0g] -TestRunCustomsgExample 2025-07-22T13:32:49+05:30 command.go:206: module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Read complete after 6s [id=d1vjm9jo0mot2mfh0k0g] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: Terraform used the selected providers to generate the following execution -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: plan. Resource actions are indicated with the following symbols: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - destroy -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: Terraform will perform the following actions: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # ibm_is_public_gateway.gateway will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_public_gateway" "gateway" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::public-gateway:r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - floating_ip = { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "address" = "163.68.87.241" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "id" = "r034-6b0b9e27-710a-441e-95a7-f65086faee0a" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5-gateway-1" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/publicGateways" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::public-gateway:r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "base-ocp-customsg-fs5-gateway-1" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_status = "available" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - status = "available" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone = "jp-osa-1" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # ibm_is_subnet.subnet_zone_1 will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_subnet" "subnet_zone_1" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - available_ipv4_address_count = 239 -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::subnet:02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ipv4_cidr_block = "10.248.0.0/24" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5-subnet-1" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - network_acl = "r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - public_gateway = "r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/subnets" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::subnet:02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "base-ocp-customsg-fs5-subnet-1" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_status = "available" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - routing_table = "r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - routing_table_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc-routing-table:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea/r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - status = "available" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - total_ipv4_address_count = 256 -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone = "jp-osa-1" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # ibm_is_vpc.vpc will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_vpc" "vpc" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address_prefix_management = "auto" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - classic_access = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - cse_source_addresses = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address = "10.12.13.199" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone_name = "jp-osa-1" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address = "10.12.32.25" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone_name = "jp-osa-2" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address = "10.12.41.144" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone_name = "jp-osa-3" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_address_prefixes = { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "jp-osa-1" = "10.248.0.0/18" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "jp-osa-2" = "10.248.64.0/18" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "jp-osa-3" = "10.248.128.0/18" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_network_acl = "r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_network_acl_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::network-acl:r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_network_acl_name = "botanist-oil-uncombed-canary" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_routing_table = "r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_routing_table_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc-routing-table:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea/r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_routing_table_name = "unstable-hatchet-festivity-conjure" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_security_group = "r034-2ce38964-206c-4961-a52a-84325930fc25" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_security_group_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2ce38964-206c-4961-a52a-84325930fc25" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - default_security_group_name = "postcard-satiable-unused-amount" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - health_reasons = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - health_state = "ok" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - no_sg_acl_rules = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/vpcs" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "base-ocp-customsg-fs5-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_status = "available" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - security_group = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "kube-lbaas-d1vjm9jo0mot2mfh0k0g" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30134 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30134 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-e11d240d-5951-4141-ba48-6c6c93096fa5" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 32203 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 32203 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-725aea9c-421c-4836-bec7-d143adab3ec5" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 80 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 80 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "0.0.0.0/0" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-5ee1c2d0-60a4-4913-9ee1-958ddd4850f1" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 443 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 443 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "0.0.0.0/0" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-f5f890a3-abd6-4bfa-a646-59699d32efd0" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 443 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 443 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.68.87.241" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-f7e0287e-0a1d-4ad5-b09f-32616fbd8146" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-e94a7557-fb65-4158-8a88-d5a74899a20a" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "kube-vpegw-d1vjm9jo0mot2mfh0k0g" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 32220 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 32220 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-4bf5315f-e01e-4630-ba26-6e98a10aeec8" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30160 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30160 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-61bbabbf-58f8-4b96-b198-65456be1a9df" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30669 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30669 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-520e0d04-09fe-4368-8b33-4410927151b3" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 32220 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 32220 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "10.248.0.0/24" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-77498c97-ff9f-46c3-b9eb-71227bbee5a5" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30669 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30669 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "10.248.0.0/24" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-a112fed6-6ac9-419a-9e40-95517e86aef5" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "kube-d1vjm9jo0mot2mfh0k0g" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "161.26.0.0/16" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-fc20c1b6-5f4c-499a-8ac0-2ecd56cf9b01" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-d06d472b-939d-4ff7-baa6-275e440f817d" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-8f00c08e-0baf-4af8-b224-33bfde9b0281" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "166.8.0.0/14" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-6832e1ad-3dbb-427a-9cc5-2293e32ba006" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "166.9.251.2" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-d1d7142c-de8f-43b9-ac67-ffbd847c1bfa" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "166.9.250.226" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-d5b4e218-66c0-463b-878a-4b9af3166eb7" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "166.9.250.194" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-fc5bc36d-088a-49ca-900c-40ceab763602" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-e94a7557-fb65-4158-8a88-d5a74899a20a" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-4f143879-dec5-42a7-9f1b-2e3346a11ef1" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-550de43e-63af-4403-bb4f-3c98b23d7f40" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "172.17.0.0/18" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-48cf28d5-c157-41ff-b8fb-492540b1f9ce" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "172.17.0.0/18" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-3194d057-4369-45e3-9f18-4ec9b6a9ac9b" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-f9c75a22-e09a-4080-9c9a-9d35b0849c7f" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "icmp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "0.0.0.0/0" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-cba515f3-78a8-4c40-be47-e9ea5c52c7a7" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 8 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30669 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30669 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.73.64.250" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-be2e9c54-088e-4463-9b19-c97e3d438cbd" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30669 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30669 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.68.69.114" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-3473c753-7799-40d9-abce-1cfd60e88371" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30669 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30669 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.69.65.114" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-b4c1c790-b651-4772-9c5b-48a4f152073d" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 30134 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 30134 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-2e949bfd-dd18-4ba1-b266-820126ffb378" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 32203 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 32203 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-659d96b8-f7ff-4932-ab96-76a6e9fe4820" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 443 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 443 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.68.90.13" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-c18ea92b-0da9-4259-9541-232386cb6770" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 443 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 443 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "tcp" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "163.68.93.113" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-0ed4052e-28b3-4013-bfa0-6434dae34be0" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-d06d472b-939d-4ff7-baa6-275e440f817d" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "kube-vpegw-r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-4a12c537-8e68-428e-aca7-4a530f9e8f33" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-kube-api-vpe-sg" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-28b9e2d6-5176-4a66-aff7-89599c340129" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-cluster-sg" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-lb-sg" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-registry-vpe-sg" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-worker-pool-sg" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "custom-master-vpe-sg" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_id = "r034-2ce38964-206c-4961-a52a-84325930fc25" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - group_name = "postcard-satiable-unused-amount" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "outbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "0.0.0.0/0" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-38bc3f6a-3900-41e4-9382-5825757b364c" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - code = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - direction = "inbound" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ip_version = "ipv4" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_max = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - port_min = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - protocol = "all" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - remote = "r034-2ce38964-206c-4961-a52a-84325930fc25" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rule_id = "r034-58e990ad-524c-476f-808a-8f781a32d767" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = 0 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - status = "available" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - subnets = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - available_ipv4_address_count = 239 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5-subnet-1" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - status = "available" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - total_ipv4_address_count = 256 -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zone = "jp-osa-1" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - dns { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - enable_hub = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resolution_binding_count = 0 -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resolver { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - configuration = "private_resolver" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - servers = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address = "161.26.0.7" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (1 unchanged attribute hidden) -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - address = "161.26.0.8" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (1 unchanged attribute hidden) -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = "system" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (7 unchanged attributes hidden) -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0] will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-cluster-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-cluster-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-kube-api-vpe-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-kube-api-vpe-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0] will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-lb-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-lb-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-master-vpe-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-master-vpe-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-registry-vpe-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-registry-vpe-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0] will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_is_security_group" "sg" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - access_tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "custom-worker-pool-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "custom-worker-pool-sg" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - rules = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.ocp_base.ibm_container_vpc_cluster.cluster[0] will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_container_vpc_cluster" "cluster" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - albs = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - cos_instance_crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - disable_outbound_traffic_protection = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - disable_public_service_endpoint = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - entitlement = "cloud_pak" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - flavor = "bx2.4x16" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - force_delete_storage = true -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "d1vjm9jo0mot2mfh0k0g" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - image_security_enforcement = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ingress_hostname = "base-ocp-customsg-fs5-3b5bf5f75003778663c521c8c35ad277-0000.jp-osa.containers.appdomain.cloud" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - ingress_secret = (sensitive value) -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - kube_version = "4.17.28_openshift" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - master_status = "Ready" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - master_url = "https://c101-e.jp-osa.containers.cloud.ibm.com:32220" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - operating_system = "REDHAT_8_64" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - pod_subnet = "172.17.0.0/18" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - private_service_endpoint_url = "https://c101.private.jp-osa.containers.cloud.ibm.com:32220" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - public_service_endpoint_url = "https://c101-e.jp-osa.containers.cloud.ibm.com:32220" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/kubernetes/clusters" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "geretain-test-base-ocp-vpc" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "base-ocp-customsg-fs5" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_status = "normal" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - security_groups = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "cluster", -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "r034-28b9e2d6-5176-4a66-aff7-89599c340129", -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - service_subnet = "172.21.0.0/16" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - state = "normal" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - update_all_workers = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc_id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpe_service_endpoint_url = "https://d1vjm9jo0mot2mfh0k0g.vpe.private.jp-osa.containers.cloud.ibm.com:32220" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - wait_for_worker_update = true -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - wait_till = "IngressReady" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - worker_count = 2 -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - timeouts { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - create = "3h" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - delete = "2h" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - update = "3h" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zones { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "jp-osa-1" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - subnet_id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.ocp_base.ibm_container_vpc_worker_pool.pool["default"] will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_container_vpc_worker_pool" "pool" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - autoscale_enabled = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - cluster = "d1vjm9jo0mot2mfh0k0g" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - entitlement = "cloud_pak" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - flavor = "bx2.4x16" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - import_on_create = true -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - labels = {} -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - operating_system = "REDHAT_8_64" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - orphan_on_delete = true -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/kubernetes/clusters" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - vpc_id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - worker_count = 2 -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - worker_pool_id = "d1vjm9jo0mot2mfh0k0g-44bcbfb" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - worker_pool_name = "default" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (1 unchanged attribute hidden) -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - timeouts { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - create = "2h" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - delete = "2h" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - zones { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "jp-osa-1" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - subnet_id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.ocp_base.ibm_resource_tag.cluster_access_tag[0] will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_resource_tag" "cluster_access_tag" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - replace = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_id = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tag_type = "access" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "geretain-dev-1:permanent-test-tag-4", -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "geretain-dev:permanent-test-tag-1", -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (1 unchanged attribute hidden) -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.ocp_base.ibm_resource_tag.cos_access_tag[0] will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_resource_tag" "cos_access_tag" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - replace = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tag_type = "access" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "geretain-dev-1:permanent-test-tag-4", -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "geretain-dev:permanent-test-tag-1", -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (1 unchanged attribute hidden) -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  # module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0] will be destroyed -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  - resource "ibm_resource_instance" "cos_instance" { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - account_id = "abac0df06b644a9cabc6e44f55b3880e" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - allow_cleanup = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - created_at = "2025-07-22T07:16:38.175Z" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - created_by = "IBMid-693000KKB0" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - dashboard_url = "https://cloud.ibm.com/objectstorage/crn%3Av1%3Abluemix%3Apublic%3Acloud-object-storage%3Aglobal%3Aa%2Fabac0df06b644a9cabc6e44f55b3880e%3Af6a5c310-bcff-4d3e-92b6-fb05dc9a0f32%3A%3A" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - extensions = {} -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - guid = "f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - last_operation = { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "async" = "false" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "cancelable" = "false" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "description" = "Completed create instance operation" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "poll" = "false" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "state" = "succeeded" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - "type" = "create" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - location = "global" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - locked = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - name = "base-ocp-customsg-fs5_cos" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - onetime_credentials = false -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - plan = "standard" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - plan_history = [ -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - { -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_plan_id = "744bfc56-d12c-4866-88d5-dac9139e0e5d" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - start_date = "2025-07-22T07:16:38.175Z" -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: }, -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: ] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_aliases_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_aliases" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_bindings_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_bindings" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_controller_url = "https://cloud.ibm.com/services/" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_crn = "crn:v1:bluemix:public:resource-controller::a/abac0df06b644a9cabc6e44f55b3880e::resource-group:ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_group_name = "crn:v1:bluemix:public:resource-controller::a/abac0df06b644a9cabc6e44f55b3880e::resource-group:ed293fd4909f4bc69b1e85324b8c39db" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_id = "dff97f5c-bc5e-4455-b470-411c3edbe49c" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_keys_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_keys" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_name = "base-ocp-customsg-fs5_cos" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_plan_id = "744bfc56-d12c-4866-88d5-dac9139e0e5d" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - resource_status = "active" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - service = "cloud-object-storage" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - state = "active" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - status = "active" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - tags = [] -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - target_crn = "crn:v1:bluemix:public:globalcatalog::::deployment:744bfc56-d12c-4866-88d5-dac9139e0e5d%3Aglobal" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - type = "service_instance" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - update_at = "2025-07-22T07:16:40.426Z" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: # (5 unchanged attributes hidden) -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: } -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: Plan: 0 to add, 0 to change, 14 to destroy. -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206:  -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: Changes to Outputs: -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: - cluster_name = "base-ocp-customsg-fs5" -> null -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Destroying... [id=crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Destroying... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Destroying... [id=d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb] -TestRunCustomsgExample 2025-07-22T13:32:50+05:30 command.go:206: module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Destruction complete after 0s -TestRunCustomsgExample 2025-07-22T13:32:52+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Destruction complete after 2s -TestRunCustomsgExample 2025-07-22T13:32:53+05:30 command.go:206: module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Destruction complete after 2s -TestRunCustomsgExample 2025-07-22T13:32:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Destroying... [id=d1vjm9jo0mot2mfh0k0g] -TestRunCustomsgExample 2025-07-22T13:33:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 10s elapsed] -TestRunCustomsgExample 2025-07-22T13:33:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 20s elapsed] -TestRunCustomsgExample 2025-07-22T13:33:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 30s elapsed] -TestRunCustomsgExample 2025-07-22T13:33:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 40s elapsed] -TestRunCustomsgExample 2025-07-22T13:33:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 50s elapsed] -TestRunCustomsgExample 2025-07-22T13:33:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:34:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:34:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:34:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:34:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:34:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:34:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:35:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:35:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:35:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:35:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:35:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:35:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:36:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:36:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:36:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:36:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:36:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:36:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:37:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:37:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:37:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:37:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:37:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:37:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:38:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:38:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:38:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:38:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:38:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:38:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:39:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:39:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:39:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:39:33+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m40s elapsed] -TestRunCustomsgExample 2025-07-22T13:39:43+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m50s elapsed] -TestRunCustomsgExample 2025-07-22T13:39:53+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m0s elapsed] -TestRunCustomsgExample 2025-07-22T13:40:03+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m10s elapsed] -TestRunCustomsgExample 2025-07-22T13:40:13+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m20s elapsed] -TestRunCustomsgExample 2025-07-22T13:40:23+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m30s elapsed] -TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Destruction complete after 7m37s -TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7] -TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-ab38f26e-b232-4e0c-82eb-077af0167d87] -TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7] -TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d] -TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a] -TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Destroying... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] -TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-1eb1b040-5158-4dd7-ab9d-225267b43c89] -TestRunCustomsgExample 2025-07-22T13:40:30+05:30 command.go:206: module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-28b9e2d6-5176-4a66-aff7-89599c340129] -TestRunCustomsgExample 2025-07-22T13:40:38+05:30 command.go:206: module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s -TestRunCustomsgExample 2025-07-22T13:40:38+05:30 command.go:206: module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s -TestRunCustomsgExample 2025-07-22T13:40:39+05:30 command.go:206: module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s -TestRunCustomsgExample 2025-07-22T13:40:39+05:30 command.go:206: module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s -TestRunCustomsgExample 2025-07-22T13:40:39+05:30 command.go:206: module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s -TestRunCustomsgExample 2025-07-22T13:40:40+05:30 command.go:206: module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Destruction complete after 10s -TestRunCustomsgExample 2025-07-22T13:40:40+05:30 command.go:206: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Still destroying... [id=crn:v1:bluemix:public:cloud-object-stor...f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::, 10s elapsed] -TestRunCustomsgExample 2025-07-22T13:40:40+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 10s elapsed] -TestRunCustomsgExample 2025-07-22T13:40:50+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 20s elapsed] -TestRunCustomsgExample 2025-07-22T13:40:50+05:30 command.go:206: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Still destroying... [id=crn:v1:bluemix:public:cloud-object-stor...f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::, 20s elapsed] -TestRunCustomsgExample 2025-07-22T13:40:52+05:30 command.go:206: module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Destruction complete after 22s -TestRunCustomsgExample 2025-07-22T13:41:00+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 30s elapsed] -TestRunCustomsgExample 2025-07-22T13:41:02+05:30 command.go:206: ibm_is_subnet.subnet_zone_1: Destruction complete after 33s -TestRunCustomsgExample 2025-07-22T13:41:02+05:30 command.go:206: ibm_is_public_gateway.gateway: Destroying... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c] -TestRunCustomsgExample 2025-07-22T13:41:12+05:30 command.go:206: ibm_is_public_gateway.gateway: Still destroying... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c, 10s elapsed] -TestRunCustomsgExample 2025-07-22T13:41:14+05:30 command.go:206: ibm_is_public_gateway.gateway: Destruction complete after 11s -TestRunCustomsgExample 2025-07-22T13:41:14+05:30 command.go:206: ibm_is_vpc.vpc: Destroying... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea] -TestRunCustomsgExample 2025-07-22T13:41:24+05:30 command.go:206: ibm_is_vpc.vpc: Still destroying... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea, 10s elapsed] -TestRunCustomsgExample 2025-07-22T13:41:26+05:30 command.go:206: ibm_is_vpc.vpc: Destruction complete after 13s -TestRunCustomsgExample 2025-07-22T13:41:26+05:30 command.go:206:  -TestRunCustomsgExample 2025-07-22T13:41:26+05:30 command.go:206: Destroy complete! Resources: 14 destroyed. -TestRunCustomsgExample 2025-07-22T13:41:26+05:30 command.go:206:  -TestRunCustomsgExample 2025-07-22T13:41:26+05:30 tests.go:261: module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Reading... -module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Reading... -module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Reading... -module.ocp_base.data.ibm_iam_auth_token.reset_api_key_tokendata: Read complete after 0s [id=2025-07-22 08:02:13.896336 +0000 UTC] -module.resource_group.data.ibm_resource_group.existing_resource_group[0]: Read complete after 1s [id=ed293fd4909f4bc69b1e85324b8c39db] -module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Reading... -module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Refreshing state... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] -ibm_is_vpc.vpc: Refreshing state... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea] -module.ocp_base.data.ibm_iam_account_settings.iam_account_settings: Read complete after 1s [id=abac0df06b644a9cabc6e44f55b3880e] -module.ocp_base.data.ibm_container_cluster_versions.cluster_versions: Read complete after 1s [id=2025-07-22 08:02:15.733671 +0000 UTC] -module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Refreshing state... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] -ibm_is_public_gateway.gateway: Refreshing state... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c] -module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-28b9e2d6-5176-4a66-aff7-89599c340129] -module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-ab38f26e-b232-4e0c-82eb-077af0167d87] -module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-1eb1b040-5158-4dd7-ab9d-225267b43c89] -module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7] -module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d] -module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Refreshing state... [id=r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7] -ibm_is_subnet.subnet_zone_1: Refreshing state... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Refreshing state... [id=d1vjm9jo0mot2mfh0k0g] -module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Refreshing state... [id=crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::] -module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Reading... -module.ocp_base.data.ibm_container_addons.existing_addons: Reading... -module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Refreshing state... [id=d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb] -module.ocp_base.data.ibm_container_addons.existing_addons: Read complete after 1s [id=d1vjm9jo0mot2mfh0k0g] -module.ocp_base.data.ibm_container_cluster_config.cluster_config[0]: Read complete after 6s [id=d1vjm9jo0mot2mfh0k0g] - -Terraform used the selected providers to generate the following execution -plan. Resource actions are indicated with the following symbols: - - destroy - -Terraform will perform the following actions: - - # ibm_is_public_gateway.gateway will be destroyed - - resource "ibm_is_public_gateway" "gateway" { - - access_tags = [] -> null - - crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::public-gateway:r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null - - floating_ip = { - - "address" = "163.68.87.241" - - "id" = "r034-6b0b9e27-710a-441e-95a7-f65086faee0a" - } -> null - - id = "r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null - - name = "base-ocp-customsg-fs5-gateway-1" -> null - - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/publicGateways" -> null - - resource_crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::public-gateway:r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null - - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_name = "geretain-test-base-ocp-vpc" -> null - - resource_name = "base-ocp-customsg-fs5-gateway-1" -> null - - resource_status = "available" -> null - - status = "available" -> null - - tags = [] -> null - - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - - zone = "jp-osa-1" -> null - } - - # ibm_is_subnet.subnet_zone_1 will be destroyed - - resource "ibm_is_subnet" "subnet_zone_1" { - - access_tags = [] -> null - - available_ipv4_address_count = 239 -> null - - crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::subnet:02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null - - id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null - - ip_version = "ipv4" -> null - - ipv4_cidr_block = "10.248.0.0/24" -> null - - name = "base-ocp-customsg-fs5-subnet-1" -> null - - network_acl = "r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null - - public_gateway = "r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c" -> null - - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/subnets" -> null - - resource_crn = "crn:v1:bluemix:public:is:jp-osa-1:a/abac0df06b644a9cabc6e44f55b3880e::subnet:02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null - - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_name = "geretain-test-base-ocp-vpc" -> null - - resource_name = "base-ocp-customsg-fs5-subnet-1" -> null - - resource_status = "available" -> null - - routing_table = "r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null - - routing_table_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc-routing-table:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea/r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null - - status = "available" -> null - - tags = [] -> null - - total_ipv4_address_count = 256 -> null - - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - - zone = "jp-osa-1" -> null - } - - # ibm_is_vpc.vpc will be destroyed - - resource "ibm_is_vpc" "vpc" { - - access_tags = [] -> null - - address_prefix_management = "auto" -> null - - classic_access = false -> null - - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - - cse_source_addresses = [ - - { - - address = "10.12.13.199" - - zone_name = "jp-osa-1" - }, - - { - - address = "10.12.32.25" - - zone_name = "jp-osa-2" - }, - - { - - address = "10.12.41.144" - - zone_name = "jp-osa-3" - }, - ] -> null - - default_address_prefixes = { - - "jp-osa-1" = "10.248.0.0/18" - - "jp-osa-2" = "10.248.64.0/18" - - "jp-osa-3" = "10.248.128.0/18" - } -> null - - default_network_acl = "r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null - - default_network_acl_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::network-acl:r034-878ebcce-65c1-4542-9010-a2cfae843623" -> null - - default_network_acl_name = "botanist-oil-uncombed-canary" -> null - - default_routing_table = "r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null - - default_routing_table_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc-routing-table:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea/r034-607eeb53-bacb-4736-ad7a-c3148bf51688" -> null - - default_routing_table_name = "unstable-hatchet-festivity-conjure" -> null - - default_security_group = "r034-2ce38964-206c-4961-a52a-84325930fc25" -> null - - default_security_group_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2ce38964-206c-4961-a52a-84325930fc25" -> null - - default_security_group_name = "postcard-satiable-unused-amount" -> null - - health_reasons = [] -> null - - health_state = "ok" -> null - - id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - - name = "base-ocp-customsg-fs5-vpc" -> null - - no_sg_acl_rules = false -> null - - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/vpcs" -> null - - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::vpc:r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_name = "geretain-test-base-ocp-vpc" -> null - - resource_name = "base-ocp-customsg-fs5-vpc" -> null - - resource_status = "available" -> null - - security_group = [ - - { - - group_id = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" - - group_name = "kube-lbaas-d1vjm9jo0mot2mfh0k0g" - - rules = [ - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 30134 - - port_min = 30134 - - protocol = "tcp" - - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" - - rule_id = "r034-e11d240d-5951-4141-ba48-6c6c93096fa5" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 32203 - - port_min = 32203 - - protocol = "tcp" - - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" - - rule_id = "r034-725aea9c-421c-4836-bec7-d143adab3ec5" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 80 - - port_min = 80 - - protocol = "tcp" - - remote = "0.0.0.0/0" - - rule_id = "r034-5ee1c2d0-60a4-4913-9ee1-958ddd4850f1" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 443 - - port_min = 443 - - protocol = "tcp" - - remote = "0.0.0.0/0" - - rule_id = "r034-f5f890a3-abd6-4bfa-a646-59699d32efd0" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 443 - - port_min = 443 - - protocol = "tcp" - - remote = "163.68.87.241" - - rule_id = "r034-f7e0287e-0a1d-4ad5-b09f-32616fbd8146" - - type = 0 - }, - ] - }, - - { - - group_id = "r034-e94a7557-fb65-4158-8a88-d5a74899a20a" - - group_name = "kube-vpegw-d1vjm9jo0mot2mfh0k0g" - - rules = [ - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 32220 - - port_min = 32220 - - protocol = "tcp" - - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" - - rule_id = "r034-4bf5315f-e01e-4630-ba26-6e98a10aeec8" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 30160 - - port_min = 30160 - - protocol = "tcp" - - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" - - rule_id = "r034-61bbabbf-58f8-4b96-b198-65456be1a9df" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 30669 - - port_min = 30669 - - protocol = "tcp" - - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" - - rule_id = "r034-520e0d04-09fe-4368-8b33-4410927151b3" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 32220 - - port_min = 32220 - - protocol = "tcp" - - remote = "10.248.0.0/24" - - rule_id = "r034-77498c97-ff9f-46c3-b9eb-71227bbee5a5" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 30669 - - port_min = 30669 - - protocol = "tcp" - - remote = "10.248.0.0/24" - - rule_id = "r034-a112fed6-6ac9-419a-9e40-95517e86aef5" - - type = 0 - }, - ] - }, - - { - - group_id = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" - - group_name = "kube-d1vjm9jo0mot2mfh0k0g" - - rules = [ - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "161.26.0.0/16" - - rule_id = "r034-fc20c1b6-5f4c-499a-8ac0-2ecd56cf9b01" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "r034-d06d472b-939d-4ff7-baa6-275e440f817d" - - rule_id = "r034-8f00c08e-0baf-4af8-b224-33bfde9b0281" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "166.8.0.0/14" - - rule_id = "r034-6832e1ad-3dbb-427a-9cc5-2293e32ba006" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "166.9.251.2" - - rule_id = "r034-d1d7142c-de8f-43b9-ac67-ffbd847c1bfa" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "166.9.250.226" - - rule_id = "r034-d5b4e218-66c0-463b-878a-4b9af3166eb7" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "166.9.250.194" - - rule_id = "r034-fc5bc36d-088a-49ca-900c-40ceab763602" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "r034-e94a7557-fb65-4158-8a88-d5a74899a20a" - - rule_id = "r034-4f143879-dec5-42a7-9f1b-2e3346a11ef1" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" - - rule_id = "r034-550de43e-63af-4403-bb4f-3c98b23d7f40" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "172.17.0.0/18" - - rule_id = "r034-48cf28d5-c157-41ff-b8fb-492540b1f9ce" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "172.17.0.0/18" - - rule_id = "r034-3194d057-4369-45e3-9f18-4ec9b6a9ac9b" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" - - rule_id = "r034-f9c75a22-e09a-4080-9c9a-9d35b0849c7f" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "icmp" - - remote = "0.0.0.0/0" - - rule_id = "r034-cba515f3-78a8-4c40-be47-e9ea5c52c7a7" - - type = 8 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 30669 - - port_min = 30669 - - protocol = "tcp" - - remote = "163.73.64.250" - - rule_id = "r034-be2e9c54-088e-4463-9b19-c97e3d438cbd" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 30669 - - port_min = 30669 - - protocol = "tcp" - - remote = "163.68.69.114" - - rule_id = "r034-3473c753-7799-40d9-abce-1cfd60e88371" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 30669 - - port_min = 30669 - - protocol = "tcp" - - remote = "163.69.65.114" - - rule_id = "r034-b4c1c790-b651-4772-9c5b-48a4f152073d" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 30134 - - port_min = 30134 - - protocol = "tcp" - - remote = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" - - rule_id = "r034-2e949bfd-dd18-4ba1-b266-820126ffb378" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 32203 - - port_min = 32203 - - protocol = "tcp" - - remote = "r034-d7c8f616-c646-4c0f-b296-6a66613920bb" - - rule_id = "r034-659d96b8-f7ff-4932-ab96-76a6e9fe4820" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 443 - - port_min = 443 - - protocol = "tcp" - - remote = "163.68.90.13" - - rule_id = "r034-c18ea92b-0da9-4259-9541-232386cb6770" - - type = 0 - }, - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 443 - - port_min = 443 - - protocol = "tcp" - - remote = "163.68.93.113" - - rule_id = "r034-0ed4052e-28b3-4013-bfa0-6434dae34be0" - - type = 0 - }, - ] - }, - - { - - group_id = "r034-d06d472b-939d-4ff7-baa6-275e440f817d" - - group_name = "kube-vpegw-r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" - - rules = [ - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "r034-65a974d1-ea33-4749-a8b0-76b283d430fa" - - rule_id = "r034-4a12c537-8e68-428e-aca7-4a530f9e8f33" - - type = 0 - }, - ] - }, - - { - - group_id = "r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" - - group_name = "custom-kube-api-vpe-sg" - - rules = [] - }, - - { - - group_id = "r034-28b9e2d6-5176-4a66-aff7-89599c340129" - - group_name = "custom-cluster-sg" - - rules = [] - }, - - { - - group_id = "r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" - - group_name = "custom-lb-sg" - - rules = [] - }, - - { - - group_id = "r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" - - group_name = "custom-registry-vpe-sg" - - rules = [] - }, - - { - - group_id = "r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" - - group_name = "custom-worker-pool-sg" - - rules = [] - }, - - { - - group_id = "r034-ab38f26e-b232-4e0c-82eb-077af0167d87" - - group_name = "custom-master-vpe-sg" - - rules = [] - }, - - { - - group_id = "r034-2ce38964-206c-4961-a52a-84325930fc25" - - group_name = "postcard-satiable-unused-amount" - - rules = [ - - { - - code = 0 - - direction = "outbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "0.0.0.0/0" - - rule_id = "r034-38bc3f6a-3900-41e4-9382-5825757b364c" - - type = 0 - }, - - { - - code = 0 - - direction = "inbound" - - ip_version = "ipv4" - - port_max = 0 - - port_min = 0 - - protocol = "all" - - remote = "r034-2ce38964-206c-4961-a52a-84325930fc25" - - rule_id = "r034-58e990ad-524c-476f-808a-8f781a32d767" - - type = 0 - }, - ] - }, - ] -> null - - status = "available" -> null - - subnets = [ - - { - - available_ipv4_address_count = 239 - - id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" - - name = "base-ocp-customsg-fs5-subnet-1" - - status = "available" - - total_ipv4_address_count = 256 - - zone = "jp-osa-1" - }, - ] -> null - - tags = [] -> null - - - dns { - - enable_hub = false -> null - - resolution_binding_count = 0 -> null - - - resolver { - - configuration = "private_resolver" -> null - - servers = [ - - { - - address = "161.26.0.7" - # (1 unchanged attribute hidden) - }, - - { - - address = "161.26.0.8" - # (1 unchanged attribute hidden) - }, - ] -> null - - type = "system" -> null - # (7 unchanged attributes hidden) - } - } - } - - # module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0] will be destroyed - - resource "ibm_is_security_group" "sg" { - - access_tags = [] -> null - - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null - - id = "r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null - - name = "custom-cluster-sg" -> null - - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null - - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-28b9e2d6-5176-4a66-aff7-89599c340129" -> null - - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_name = "geretain-test-base-ocp-vpc" -> null - - resource_name = "custom-cluster-sg" -> null - - rules = [] -> null - - tags = [] -> null - - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - } - - # module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed - - resource "ibm_is_security_group" "sg" { - - access_tags = [] -> null - - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null - - id = "r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null - - name = "custom-kube-api-vpe-sg" -> null - - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null - - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-1eb1b040-5158-4dd7-ab9d-225267b43c89" -> null - - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_name = "geretain-test-base-ocp-vpc" -> null - - resource_name = "custom-kube-api-vpe-sg" -> null - - rules = [] -> null - - tags = [] -> null - - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - } - - # module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0] will be destroyed - - resource "ibm_is_security_group" "sg" { - - access_tags = [] -> null - - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null - - id = "r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null - - name = "custom-lb-sg" -> null - - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null - - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7" -> null - - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_name = "geretain-test-base-ocp-vpc" -> null - - resource_name = "custom-lb-sg" -> null - - rules = [] -> null - - tags = [] -> null - - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - } - - # module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed - - resource "ibm_is_security_group" "sg" { - - access_tags = [] -> null - - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null - - id = "r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null - - name = "custom-master-vpe-sg" -> null - - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null - - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-ab38f26e-b232-4e0c-82eb-077af0167d87" -> null - - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_name = "geretain-test-base-ocp-vpc" -> null - - resource_name = "custom-master-vpe-sg" -> null - - rules = [] -> null - - tags = [] -> null - - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - } - - # module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0] will be destroyed - - resource "ibm_is_security_group" "sg" { - - access_tags = [] -> null - - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null - - id = "r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null - - name = "custom-registry-vpe-sg" -> null - - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null - - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7" -> null - - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_name = "geretain-test-base-ocp-vpc" -> null - - resource_name = "custom-registry-vpe-sg" -> null - - rules = [] -> null - - tags = [] -> null - - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - } - - # module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0] will be destroyed - - resource "ibm_is_security_group" "sg" { - - access_tags = [] -> null - - crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null - - id = "r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null - - name = "custom-worker-pool-sg" -> null - - resource_controller_url = "https://cloud.ibm.com/vpc-ext/network/securityGroups" -> null - - resource_crn = "crn:v1:bluemix:public:is:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e::security-group:r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d" -> null - - resource_group = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_name = "geretain-test-base-ocp-vpc" -> null - - resource_name = "custom-worker-pool-sg" -> null - - rules = [] -> null - - tags = [] -> null - - vpc = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - } - - # module.ocp_base.ibm_container_vpc_cluster.cluster[0] will be destroyed - - resource "ibm_container_vpc_cluster" "cluster" { - - albs = [] -> null - - cos_instance_crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null - - crn = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null - - disable_outbound_traffic_protection = false -> null - - disable_public_service_endpoint = false -> null - - entitlement = "cloud_pak" -> null - - flavor = "bx2.4x16" -> null - - force_delete_storage = true -> null - - id = "d1vjm9jo0mot2mfh0k0g" -> null - - image_security_enforcement = false -> null - - ingress_hostname = "base-ocp-customsg-fs5-3b5bf5f75003778663c521c8c35ad277-0000.jp-osa.containers.appdomain.cloud" -> null - - ingress_secret = (sensitive value) -> null - - kube_version = "4.17.28_openshift" -> null - - master_status = "Ready" -> null - - master_url = "https://c101-e.jp-osa.containers.cloud.ibm.com:32220" -> null - - name = "base-ocp-customsg-fs5" -> null - - operating_system = "REDHAT_8_64" -> null - - pod_subnet = "172.17.0.0/18" -> null - - private_service_endpoint_url = "https://c101.private.jp-osa.containers.cloud.ibm.com:32220" -> null - - public_service_endpoint_url = "https://c101-e.jp-osa.containers.cloud.ibm.com:32220" -> null - - resource_controller_url = "https://cloud.ibm.com/kubernetes/clusters" -> null - - resource_crn = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null - - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_name = "geretain-test-base-ocp-vpc" -> null - - resource_name = "base-ocp-customsg-fs5" -> null - - resource_status = "normal" -> null - - security_groups = [ - - "cluster", - - "r034-28b9e2d6-5176-4a66-aff7-89599c340129", - ] -> null - - service_subnet = "172.21.0.0/16" -> null - - state = "normal" -> null - - tags = [] -> null - - update_all_workers = false -> null - - vpc_id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - - vpe_service_endpoint_url = "https://d1vjm9jo0mot2mfh0k0g.vpe.private.jp-osa.containers.cloud.ibm.com:32220" -> null - - wait_for_worker_update = true -> null - - wait_till = "IngressReady" -> null - - worker_count = 2 -> null - - - timeouts { - - create = "3h" -> null - - delete = "2h" -> null - - update = "3h" -> null - } - - - zones { - - name = "jp-osa-1" -> null - - subnet_id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null - } - } - - # module.ocp_base.ibm_container_vpc_worker_pool.pool["default"] will be destroyed - - resource "ibm_container_vpc_worker_pool" "pool" { - - autoscale_enabled = false -> null - - cluster = "d1vjm9jo0mot2mfh0k0g" -> null - - entitlement = "cloud_pak" -> null - - flavor = "bx2.4x16" -> null - - id = "d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb" -> null - - import_on_create = true -> null - - labels = {} -> null - - operating_system = "REDHAT_8_64" -> null - - orphan_on_delete = true -> null - - resource_controller_url = "https://cloud.ibm.com/kubernetes/clusters" -> null - - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - vpc_id = "r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea" -> null - - worker_count = 2 -> null - - worker_pool_id = "d1vjm9jo0mot2mfh0k0g-44bcbfb" -> null - - worker_pool_name = "default" -> null - # (1 unchanged attribute hidden) - - - timeouts { - - create = "2h" -> null - - delete = "2h" -> null - } - - - zones { - - name = "jp-osa-1" -> null - - subnet_id = "02n7-df761470-ad53-4366-8ff9-10a64c8a391a" -> null - } - } - - # module.ocp_base.ibm_resource_tag.cluster_access_tag[0] will be destroyed - - resource "ibm_resource_tag" "cluster_access_tag" { - - id = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null - - replace = false -> null - - resource_id = "crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::" -> null - - tag_type = "access" -> null - - tags = [ - - "geretain-dev-1:permanent-test-tag-4", - - "geretain-dev:permanent-test-tag-1", - ] -> null - # (1 unchanged attribute hidden) - } - - # module.ocp_base.ibm_resource_tag.cos_access_tag[0] will be destroyed - - resource "ibm_resource_tag" "cos_access_tag" { - - id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null - - replace = false -> null - - resource_id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null - - tag_type = "access" -> null - - tags = [ - - "geretain-dev-1:permanent-test-tag-4", - - "geretain-dev:permanent-test-tag-1", - ] -> null - # (1 unchanged attribute hidden) - } - - # module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0] will be destroyed - - resource "ibm_resource_instance" "cos_instance" { - - account_id = "abac0df06b644a9cabc6e44f55b3880e" -> null - - allow_cleanup = false -> null - - created_at = "2025-07-22T07:16:38.175Z" -> null - - created_by = "IBMid-693000KKB0" -> null - - crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null - - dashboard_url = "https://cloud.ibm.com/objectstorage/crn%3Av1%3Abluemix%3Apublic%3Acloud-object-storage%3Aglobal%3Aa%2Fabac0df06b644a9cabc6e44f55b3880e%3Af6a5c310-bcff-4d3e-92b6-fb05dc9a0f32%3A%3A" -> null - - extensions = {} -> null - - guid = "f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32" -> null - - id = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null - - last_operation = { - - "async" = "false" - - "cancelable" = "false" - - "description" = "Completed create instance operation" - - "poll" = "false" - - "state" = "succeeded" - - "type" = "create" - } -> null - - location = "global" -> null - - locked = false -> null - - name = "base-ocp-customsg-fs5_cos" -> null - - onetime_credentials = false -> null - - plan = "standard" -> null - - plan_history = [ - - { - - resource_plan_id = "744bfc56-d12c-4866-88d5-dac9139e0e5d" - - start_date = "2025-07-22T07:16:38.175Z" - }, - ] -> null - - resource_aliases_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_aliases" -> null - - resource_bindings_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_bindings" -> null - - resource_controller_url = "https://cloud.ibm.com/services/" -> null - - resource_crn = "crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::" -> null - - resource_group_crn = "crn:v1:bluemix:public:resource-controller::a/abac0df06b644a9cabc6e44f55b3880e::resource-group:ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_id = "ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_group_name = "crn:v1:bluemix:public:resource-controller::a/abac0df06b644a9cabc6e44f55b3880e::resource-group:ed293fd4909f4bc69b1e85324b8c39db" -> null - - resource_id = "dff97f5c-bc5e-4455-b470-411c3edbe49c" -> null - - resource_keys_url = "/v2/resource_instances/f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32/resource_keys" -> null - - resource_name = "base-ocp-customsg-fs5_cos" -> null - - resource_plan_id = "744bfc56-d12c-4866-88d5-dac9139e0e5d" -> null - - resource_status = "active" -> null - - service = "cloud-object-storage" -> null - - state = "active" -> null - - status = "active" -> null - - tags = [] -> null - - target_crn = "crn:v1:bluemix:public:globalcatalog::::deployment:744bfc56-d12c-4866-88d5-dac9139e0e5d%3Aglobal" -> null - - type = "service_instance" -> null - - update_at = "2025-07-22T07:16:40.426Z" -> null - # (5 unchanged attributes hidden) - } - -Plan: 0 to add, 0 to change, 14 to destroy. - -Changes to Outputs: - - cluster_name = "base-ocp-customsg-fs5" -> null -module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Destroying... [id=crn:v1:bluemix:public:containers-kubernetes:jp-osa:a/abac0df06b644a9cabc6e44f55b3880e:d1vjm9jo0mot2mfh0k0g::] -module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Destroying... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] -module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Destroying... [id=d1vjm9jo0mot2mfh0k0g/d1vjm9jo0mot2mfh0k0g-44bcbfb] -module.ocp_base.ibm_container_vpc_worker_pool.pool["default"]: Destruction complete after 0s -module.ocp_base.ibm_resource_tag.cos_access_tag[0]: Destruction complete after 2s -module.ocp_base.ibm_resource_tag.cluster_access_tag[0]: Destruction complete after 2s -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Destroying... [id=d1vjm9jo0mot2mfh0k0g] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 10s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 20s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 30s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 40s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 50s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m0s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m10s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m20s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m30s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m40s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 1m50s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m0s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m10s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m20s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m30s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m40s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 2m50s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m0s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m10s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m20s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m30s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m40s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 3m50s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m0s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m10s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m20s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m30s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m40s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 4m50s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m0s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m10s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m20s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m30s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m40s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 5m50s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m0s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m10s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m20s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m30s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m40s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 6m50s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m0s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m10s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m20s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Still destroying... [id=d1vjm9jo0mot2mfh0k0g, 7m30s elapsed] -module.ocp_base.ibm_container_vpc_cluster.cluster[0]: Destruction complete after 7m37s -module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-294c73e6-6184-4aef-a812-0bd9df0cd1d7] -module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-ab38f26e-b232-4e0c-82eb-077af0167d87] -module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-2b19a406-cbc4-4c1c-ae92-162291bdbdd7] -module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-7ca77c7f-9294-461e-a18c-7ad1a0e00c1d] -ibm_is_subnet.subnet_zone_1: Destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a] -module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Destroying... [id=crn:v1:bluemix:public:cloud-object-storage:global:a/abac0df06b644a9cabc6e44f55b3880e:f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::] -module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-1eb1b040-5158-4dd7-ab9d-225267b43c89] -module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Destroying... [id=r034-28b9e2d6-5176-4a66-aff7-89599c340129] -module.custom_sg["custom-registry-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s -module.custom_sg["custom-cluster-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s -module.custom_sg["custom-kube-api-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s -module.custom_sg["custom-lb-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s -module.custom_sg["custom-master-vpe-sg"].ibm_is_security_group.sg[0]: Destruction complete after 9s -module.custom_sg["custom-worker-pool-sg"].ibm_is_security_group.sg[0]: Destruction complete after 10s -module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Still destroying... [id=crn:v1:bluemix:public:cloud-object-stor...f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::, 10s elapsed] -ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 10s elapsed] -ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 20s elapsed] -module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Still destroying... [id=crn:v1:bluemix:public:cloud-object-stor...f6a5c310-bcff-4d3e-92b6-fb05dc9a0f32::, 20s elapsed] -module.ocp_base.module.cos_instance[0].ibm_resource_instance.cos_instance[0]: Destruction complete after 22s -ibm_is_subnet.subnet_zone_1: Still destroying... [id=02n7-df761470-ad53-4366-8ff9-10a64c8a391a, 30s elapsed] -ibm_is_subnet.subnet_zone_1: Destruction complete after 33s -ibm_is_public_gateway.gateway: Destroying... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c] -ibm_is_public_gateway.gateway: Still destroying... [id=r034-aba80141-639c-4cf6-b5eb-c17c1a0fda2c, 10s elapsed] -ibm_is_public_gateway.gateway: Destruction complete after 11s -ibm_is_vpc.vpc: Destroying... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea] -ibm_is_vpc.vpc: Still destroying... [id=r034-f81dad4a-280a-4ff0-823a-ba484b1fc3ea, 10s elapsed] -ibm_is_vpc.vpc: Destruction complete after 13s - -Destroy complete! Resources: 14 destroyed. - -TestRunCustomsgExample 2025-07-22T13:41:26+05:30 tests.go:266: END: Destroy - pr_test.go:216: - Error Trace: /Users/aryagirishk/Desktop/quickstartocp/last/last/terraform-ibm-base-ocp-vpc/tests/pr_test.go:216 - Error: Expected nil, but got: retry.FatalError{Underlying:(*shell.ErrWithCmdOutput)(0x14000686060)} - Test: TestRunCustomsgExample - Messages: This should not have errored - pr_test.go:217: - Error Trace: /Users/aryagirishk/Desktop/quickstartocp/last/last/terraform-ibm-base-ocp-vpc/tests/pr_test.go:217 - Error: Expected value not to be nil. - Test: TestRunCustomsgExample - Messages: Expected some output ---- FAIL: TestRunCustomsgExample (3376.66s) -FAIL -exit status 1 -FAIL github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc 3379.241s From 5570e17f7a7263b41bc681b21f89172944342c93 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Tue, 22 Jul 2025 17:12:29 +0530 Subject: [PATCH 06/32] fix: Defined Resourcegroup in pr_test --- tests/other_test.go | 1 - tests/pr_test.go | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/other_test.go b/tests/other_test.go index bcd8fb09..35a1ea65 100644 --- a/tests/other_test.go +++ b/tests/other_test.go @@ -10,7 +10,6 @@ import ( "github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper/testschematic" ) -const resourceGroup = "geretain-test-base-ocp-vpc" const advancedExampleDir = "examples/advanced" const basicExampleDir = "examples/basic" const fscloudExampleDir = "examples/fscloud" diff --git a/tests/pr_test.go b/tests/pr_test.go index 2155e319..9fcb27e1 100644 --- a/tests/pr_test.go +++ b/tests/pr_test.go @@ -24,6 +24,7 @@ import ( const fullyConfigurableTerraformDir = "solutions/fully-configurable" const customsgExampleDir = "examples/custom_sg" const quickStartTerraformDir = "solutions/quickstart" +const resourceGroup = "geretain-test-base-ocp-vpc" // Define a struct with fields that match the structure of the YAML data const yamlLocation = "../common-dev-assets/common-go-assets/common-permanent-resources.yaml" From 7da6b64a303be62479a1ed16ee64fb5c691df173 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Tue, 22 Jul 2025 17:40:25 +0530 Subject: [PATCH 07/32] Resolved precommit error --- .secrets.baseline | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.secrets.baseline b/.secrets.baseline index 9e22a259..eb74fa8b 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -3,7 +3,7 @@ "files": "go.sum|^.secrets.baseline$", "lines": null }, - "generated_at": "2025-07-22T02:37:17Z", + "generated_at": "2025-07-22T11:44:55Z", "plugins_used": [ { "name": "AWSKeyDetector" @@ -82,7 +82,7 @@ "hashed_secret": "8196b86ede820e665b2b8af9c648f4996be99838", "is_secret": false, "is_verified": false, - "line_number": 66, + "line_number": 67, "type": "Secret Keyword", "verified_result": null } From 8229c75550addca0a619edb1f51cb17508589e12 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Thu, 24 Jul 2025 13:57:20 +0530 Subject: [PATCH 08/32] updated code --- ibm_catalog.json | 26 +++++ log.txt | 161 ++++++++++++++++++++++++++++++ solutions/quickstart/main.tf | 4 +- solutions/quickstart/variables.tf | 13 +++ tests/pr_test.go | 2 +- 5 files changed, 204 insertions(+), 2 deletions(-) create mode 100644 log.txt diff --git a/ibm_catalog.json b/ibm_catalog.json index 9c506645..149e4390 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1149,6 +1149,28 @@ "key": "address_prefix", "hidden":true }, + { + "key": "cluster_config_endpoint_type", + "options": [ + { + "displayname": "default", + "value": "default" + }, + { + "displayname": "private", + "value": "private" + }, + { + "displayname": "vpe", + "value": "vpe" + }, + { + "displayname": "link", + "value": "link" + } + ], + "hidden":true + }, { "key": "ocp_entitlement", "hidden":true @@ -1170,7 +1192,11 @@ }, { "key": "disable_outbound_traffic_protection" + }, + { + "key": "use_private_endpoint" } + ] } ] diff --git a/log.txt b/log.txt new file mode 100644 index 00000000..d2ae3e2f --- /dev/null +++ b/log.txt @@ -0,0 +1,161 @@ +cd tests && go test -run TestRunQuickstartSchematics -count=1 -v -timeout 600m +=== RUN TestRunQuickstartSchematics +=== PAUSE TestRunQuickstartSchematics +=== CONT TestRunQuickstartSchematics +2025/07/24 11:10:18 Region au-syd VPC count: 6 +2025/07/24 11:10:18 --- new best region is au-syd +2025/07/24 11:10:21 Region ca-tor VPC count: 6 +2025/07/24 11:10:26 Region br-sao VPC count: 6 +2025/07/24 11:10:30 Region eu-de VPC count: 14 +2025/07/24 11:10:35 Region eu-es VPC count: 5 +2025/07/24 11:10:35 --- new best region is eu-es +2025/07/24 11:10:40 Region eu-gb VPC count: 5 +2025/07/24 11:10:44 Region us-east VPC count: 16 +2025/07/24 11:10:48 Region us-south VPC count: 35 +2025/07/24 11:10:53 Region jp-osa VPC count: 6 +2025/07/24 11:10:58 Region jp-tok VPC count: 7 +2025/07/24 11:10:58 Best region was found!: eu-es + tests.go:347: [SCHEMATICS] Random Workspace region chosen: eu + schematics.go:137: [SCHEMATICS] Schematics API for region eu: https://eu.schematics.cloud.ibm.com + tests.go:101: [SCHEMATICS] Creating Test Workspace + tests.go:107: [SCHEMATICS] Workspace Created: ocp-qs-bx9 (eu-de.workspace.ocp-qs-bx9.59f672e3) + tests.go:124: Starting with variable validation for branch: quickstart-ocp + schematics.go:234: [SCHEMATICS] Creating TAR file + schematics.go:240: [SCHEMATICS] Uploading TAR file + schematics.go:558: [SCHEMATICS] ... still waiting for job TAR_WORKSPACE_UPLOAD to complete: 1 minutes + schematics.go:567: [SCHEMATICS] The status of job TAR_WORKSPACE_UPLOAD is: COMPLETED + tests.go:146: [SCHEMATICS] Updating Workspace Variablestore + tests.go:162: [SCHEMATICS] Starting PLAN job ... + schematics.go:558: [SCHEMATICS] ... still waiting for job PLAN to complete: 1 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job PLAN to complete: 2 minutes + schematics.go:567: [SCHEMATICS] The status of job PLAN is: COMPLETED + tests.go:196: [SCHEMATICS] Starting APPLY job ... + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 1 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 2 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 3 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 4 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 5 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 6 minutes + schematics.go:512: [SCHEMATICS] RETRY GetWorkspaceActivity, status code: 500 + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 7 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 8 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 9 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 10 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 11 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 12 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 13 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 14 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 15 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 16 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 18 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 19 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 20 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 21 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 22 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 23 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 24 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 25 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 26 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 27 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 28 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 29 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 30 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 31 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 32 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 33 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 34 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 35 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 36 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 37 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 38 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 39 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 40 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 41 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 42 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 43 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 44 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 45 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 46 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 47 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 48 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 49 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 50 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 51 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 52 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 53 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 54 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 55 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 56 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 57 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 58 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 59 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 60 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 61 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 62 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 63 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 64 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 65 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 66 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 67 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 68 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 69 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 70 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 71 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 72 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 73 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 74 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 75 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 76 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 77 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 78 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 79 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 80 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 81 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 82 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 83 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 84 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 85 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 86 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 87 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 88 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 89 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 90 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 91 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 92 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 94 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 95 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 96 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 97 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 98 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 99 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 100 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 101 minutes + schematics.go:567: [SCHEMATICS] The status of job APPLY is: COMPLETED + tests.go:262: [SCHEMATICS] Starting CONSISTENCY PLAN job ... + schematics.go:558: [SCHEMATICS] ... still waiting for job PLAN to complete: 1 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job PLAN to complete: 2 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job PLAN to complete: 3 minutes + schematics.go:567: [SCHEMATICS] The status of job PLAN is: COMPLETED + tests.go:455: [SCHEMATICS] Starting DESTROY job ... + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 1 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 2 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 3 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 4 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 5 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 6 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 7 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 8 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 9 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 10 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 11 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 12 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 13 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 14 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 15 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 16 minutes + schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 17 minutes + schematics.go:567: [SCHEMATICS] The status of job DESTROY is: COMPLETED + tests.go:482: [SCHEMATICS] Deleting Workspace +--- PASS: TestRunQuickstartSchematics (7559.46s) +PASS +ok github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc 7561.419s diff --git a/solutions/quickstart/main.tf b/solutions/quickstart/main.tf index 304ca7bf..d543daca 100644 --- a/solutions/quickstart/main.tf +++ b/solutions/quickstart/main.tf @@ -130,7 +130,7 @@ locals { # OCP VPC cluster (single zone) ######################################################################################################################## module "ocp_base" { - source = "../../" + source = "../.." cluster_name = local.cluster_name resource_group_id = module.resource_group.resource_group_id region = var.region @@ -142,4 +142,6 @@ module "ocp_base" { disable_outbound_traffic_protection = var.disable_outbound_traffic_protection access_tags = var.access_tags disable_public_endpoint = var.disable_public_endpoint + use_private_endpoint = var.use_private_endpoint + cluster_config_endpoint_type = var.cluster_config_endpoint_type } diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index 80f16cda..feb2046b 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -96,3 +96,16 @@ variable "disable_outbound_traffic_protection" { description = "Whether to allow public outbound access from the cluster workers. This is only applicable for OCP 4.15 and later." default = true } + +variable "use_private_endpoint" { + type = bool + description = "Set this to true to force all API calls to use the IBM Cloud private endpoints." + default = true +} + +variable "cluster_config_endpoint_type" { + description = "Specify which type of endpoint to use for cluster config access: 'default', 'private', 'vpe', 'link'. A 'default' value uses the default endpoint of the cluster." + type = string + default = "default" + nullable = true +} diff --git a/tests/pr_test.go b/tests/pr_test.go index 9fcb27e1..9eda9675 100644 --- a/tests/pr_test.go +++ b/tests/pr_test.go @@ -92,7 +92,7 @@ func setupQuickstartOptions(t *testing.T, prefix string) *testschematic.TestSche ResourceGroup: resourceGroup, TarIncludePatterns: []string{ "*.tf", - quickStartTerraformDir + "/*.tf", + quickStartTerraformDir + "/*.tf", "scripts/*.sh", "kubeconfig/README.md", }, TemplateFolder: quickStartTerraformDir, Tags: []string{"test-schematic"}, From d24366e8d1721080dad48be6bde5ab76141b6834 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Thu, 24 Jul 2025 14:30:49 +0530 Subject: [PATCH 09/32] Removed logfile --- log.txt | 161 -------------------------------------------------------- 1 file changed, 161 deletions(-) delete mode 100644 log.txt diff --git a/log.txt b/log.txt deleted file mode 100644 index d2ae3e2f..00000000 --- a/log.txt +++ /dev/null @@ -1,161 +0,0 @@ -cd tests && go test -run TestRunQuickstartSchematics -count=1 -v -timeout 600m -=== RUN TestRunQuickstartSchematics -=== PAUSE TestRunQuickstartSchematics -=== CONT TestRunQuickstartSchematics -2025/07/24 11:10:18 Region au-syd VPC count: 6 -2025/07/24 11:10:18 --- new best region is au-syd -2025/07/24 11:10:21 Region ca-tor VPC count: 6 -2025/07/24 11:10:26 Region br-sao VPC count: 6 -2025/07/24 11:10:30 Region eu-de VPC count: 14 -2025/07/24 11:10:35 Region eu-es VPC count: 5 -2025/07/24 11:10:35 --- new best region is eu-es -2025/07/24 11:10:40 Region eu-gb VPC count: 5 -2025/07/24 11:10:44 Region us-east VPC count: 16 -2025/07/24 11:10:48 Region us-south VPC count: 35 -2025/07/24 11:10:53 Region jp-osa VPC count: 6 -2025/07/24 11:10:58 Region jp-tok VPC count: 7 -2025/07/24 11:10:58 Best region was found!: eu-es - tests.go:347: [SCHEMATICS] Random Workspace region chosen: eu - schematics.go:137: [SCHEMATICS] Schematics API for region eu: https://eu.schematics.cloud.ibm.com - tests.go:101: [SCHEMATICS] Creating Test Workspace - tests.go:107: [SCHEMATICS] Workspace Created: ocp-qs-bx9 (eu-de.workspace.ocp-qs-bx9.59f672e3) - tests.go:124: Starting with variable validation for branch: quickstart-ocp - schematics.go:234: [SCHEMATICS] Creating TAR file - schematics.go:240: [SCHEMATICS] Uploading TAR file - schematics.go:558: [SCHEMATICS] ... still waiting for job TAR_WORKSPACE_UPLOAD to complete: 1 minutes - schematics.go:567: [SCHEMATICS] The status of job TAR_WORKSPACE_UPLOAD is: COMPLETED - tests.go:146: [SCHEMATICS] Updating Workspace Variablestore - tests.go:162: [SCHEMATICS] Starting PLAN job ... - schematics.go:558: [SCHEMATICS] ... still waiting for job PLAN to complete: 1 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job PLAN to complete: 2 minutes - schematics.go:567: [SCHEMATICS] The status of job PLAN is: COMPLETED - tests.go:196: [SCHEMATICS] Starting APPLY job ... - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 1 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 2 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 3 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 4 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 5 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 6 minutes - schematics.go:512: [SCHEMATICS] RETRY GetWorkspaceActivity, status code: 500 - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 7 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 8 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 9 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 10 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 11 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 12 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 13 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 14 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 15 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 16 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 18 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 19 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 20 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 21 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 22 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 23 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 24 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 25 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 26 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 27 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 28 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 29 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 30 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 31 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 32 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 33 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 34 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 35 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 36 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 37 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 38 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 39 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 40 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 41 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 42 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 43 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 44 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 45 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 46 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 47 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 48 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 49 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 50 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 51 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 52 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 53 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 54 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 55 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 56 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 57 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 58 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 59 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 60 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 61 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 62 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 63 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 64 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 65 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 66 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 67 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 68 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 69 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 70 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 71 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 72 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 73 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 74 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 75 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 76 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 77 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 78 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 79 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 80 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 81 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 82 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 83 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 84 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 85 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 86 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 87 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 88 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 89 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 90 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 91 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 92 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 94 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 95 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 96 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 97 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 98 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 99 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 100 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job APPLY to complete: 101 minutes - schematics.go:567: [SCHEMATICS] The status of job APPLY is: COMPLETED - tests.go:262: [SCHEMATICS] Starting CONSISTENCY PLAN job ... - schematics.go:558: [SCHEMATICS] ... still waiting for job PLAN to complete: 1 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job PLAN to complete: 2 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job PLAN to complete: 3 minutes - schematics.go:567: [SCHEMATICS] The status of job PLAN is: COMPLETED - tests.go:455: [SCHEMATICS] Starting DESTROY job ... - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 1 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 2 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 3 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 4 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 5 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 6 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 7 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 8 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 9 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 10 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 11 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 12 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 13 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 14 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 15 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 16 minutes - schematics.go:558: [SCHEMATICS] ... still waiting for job DESTROY to complete: 17 minutes - schematics.go:567: [SCHEMATICS] The status of job DESTROY is: COMPLETED - tests.go:482: [SCHEMATICS] Deleting Workspace ---- PASS: TestRunQuickstartSchematics (7559.46s) -PASS -ok github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc 7561.419s From 76a101af7a7aa057b34b682b49de3247f83124a7 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 25 Jul 2025 12:27:01 +0530 Subject: [PATCH 10/32] Addressed review comments --- .catalog-onboard-pipeline.yaml | 4 ++++ .secrets.baseline | 4 ++-- ibm_catalog.json | 9 +++++---- solutions/quickstart/main.tf | 4 ++-- solutions/quickstart/variables.tf | 8 +++++++- tests/pr_test.go | 32 ++++++++++++++++++++++++++++++- 6 files changed, 51 insertions(+), 10 deletions(-) diff --git a/.catalog-onboard-pipeline.yaml b/.catalog-onboard-pipeline.yaml index 3110933e..c6150d24 100644 --- a/.catalog-onboard-pipeline.yaml +++ b/.catalog-onboard-pipeline.yaml @@ -18,3 +18,7 @@ offerings: - name: quickstart mark_ready: true install_type: fullstack + scc: + instance_id: 1c7d5f78-9262-44c3-b779-b28fe4d88c37 + region: us-south + scope_resource_group_var_name: existing_resource_group_name diff --git a/.secrets.baseline b/.secrets.baseline index eb74fa8b..f58c7c77 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -3,7 +3,7 @@ "files": "go.sum|^.secrets.baseline$", "lines": null }, - "generated_at": "2025-07-22T11:44:55Z", + "generated_at": "2025-07-25T06:50:54Z", "plugins_used": [ { "name": "AWSKeyDetector" @@ -82,7 +82,7 @@ "hashed_secret": "8196b86ede820e665b2b8af9c648f4996be99838", "is_secret": false, "is_verified": false, - "line_number": 67, + "line_number": 82, "type": "Secret Keyword", "verified_result": null } diff --git a/ibm_catalog.json b/ibm_catalog.json index c6d7f8b8..08cf2224 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -62,7 +62,7 @@ { "label": "Fully configurable", "name": "fully-configurable", - "index": 1, + "index": 2, "install_type": "fullstack", "working_directory": "solutions/fully-configurable", "compliance": { @@ -978,7 +978,7 @@ { "label": "[Experimental] Quickstart", "name": "quickstart", - "index": 2, + "index": 1, "install_type": "fullstack", "working_directory": "solutions/quickstart", "compliance": { @@ -1116,11 +1116,11 @@ "hidden": true }, { - "key": "cluster_name", - "hidden":true + "key": "cluster_name" }, { "key": "ocp_version", + "required": true, "display_name": "openshift_version", "options": [ { @@ -1147,6 +1147,7 @@ }, { "key": "default_worker_pool_operating_system", + "display_name":"operating_system", "hidden": true, "options": [ { diff --git a/solutions/quickstart/main.tf b/solutions/quickstart/main.tf index d543daca..a7b4894f 100644 --- a/solutions/quickstart/main.tf +++ b/solutions/quickstart/main.tf @@ -70,7 +70,7 @@ module "vpc" { version = "7.25.10" resource_group_id = module.resource_group.resource_group_id region = var.region - name = "${local.prefix}vpc" + name = "vpc" prefix = var.prefix subnets = local.subnets network_acls = [local.network_acl] @@ -117,7 +117,7 @@ locals { [ for count in range(2, local.selected.zones + 1) : { subnet_prefix = "zone-${count}" - pool_name = "default-${count}" + pool_name = "workerpool-${count}" # 'workerpool-2', 'workerpool-3', etc. machine_type = local.selected.flavor workers_per_zone = local.selected.workers_per_zone operating_system = var.default_worker_pool_operating_system diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index feb2046b..49b8677f 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -4,11 +4,13 @@ variable "ibmcloud_api_key" { description = "The IBM Cloud API key." sensitive = true } + variable "existing_resource_group_name" { type = string description = "The name of an existing resource group to provision the cluster." default = "Default" } + variable "provider_visibility" { description = "Set the visibility value for the IBM terraform provider. Supported values are `public`, `private`, `public-and-private`. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/guides/custom-service-endpoints)." type = string @@ -19,6 +21,7 @@ variable "provider_visibility" { error_message = "Invalid visibility option. Allowed values are 'public', 'private', or 'public-and-private'." } } + variable "prefix" { type = string description = "The prefix to be added to all resources created by this solution. To skip using a prefix, set this value to null or an empty string. The prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It should not exceed 16 characters, must not end with a hyphen('-'), and cannot contain consecutive hyphens ('--'). Example: `prod-0205-ocpqs`." @@ -33,15 +36,17 @@ variable "prefix" { error_message = "Prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It must not end with a hyphen('-'), and cannot contain consecutive hyphens ('--')." } validation { - condition = length(var.prefix) <= 16 + condition = var.prefix == null || var.prefix == "" ? true : length(var.prefix) <= 16 error_message = "Prefix must not exceed 16 characters." } } + variable "region" { type = string description = "Region in which all the resources will be deployed. [Learn More](https://terraform-ibm-modules.github.io/documentation/#/region)." default = "us-south" } + variable "ocp_version" { type = string description = "Version of the OpenShift cluster to provision." @@ -54,6 +59,7 @@ variable "cluster_name" { default = "openshift-qs" } + variable "address_prefix" { description = "The IP range that will be defined for the VPC for a certain location. Use only with manual address prefixes." type = string diff --git a/tests/pr_test.go b/tests/pr_test.go index 9eda9675..02d5ccb4 100644 --- a/tests/pr_test.go +++ b/tests/pr_test.go @@ -2,8 +2,10 @@ package test import ( + "crypto/rand" "fmt" "log" + "math/big" "os" "strings" "testing" @@ -29,6 +31,19 @@ const resourceGroup = "geretain-test-base-ocp-vpc" // Define a struct with fields that match the structure of the YAML data const yamlLocation = "../common-dev-assets/common-go-assets/common-permanent-resources.yaml" +var validClusterRegions = []string{ + "us-south", + "br-sao", + "eu-gb", + "jp-tok", + "au-syd", + "eu-de", + "eu-gb", + "eu-es", + "jp-osa", + "us-east", +} + // Ensure there is one test per supported OCP version const ocpVersion1 = "4.18" // used by TestRunFullyConfigurable, TestRunUpgradeFullyConfigurable, TestFSCloudInSchematic and TestRunMultiClusterExample const ocpVersion2 = "4.17" // used by TestCustomSGExample and TestRunCustomsgExample @@ -67,6 +82,10 @@ func setupTerraform(t *testing.T, prefix, realTerraformDir string) *terraform.Op apiKey := validateEnvVariable(t, "TF_VAR_ibmcloud_api_key") region, err := testhelper.GetBestVpcRegion(apiKey, "../common-dev-assets/common-go-assets/cloudinfo-region-vpc-gen2-prefs.yaml", "eu-de") require.NoError(t, err, "Failed to get best VPC region") + // # Temp workaround for : https://watson.service-now.com/nav_to.do?uri=sn_customerservice_case.do?sys_id=a9dbcdef47bae2504fc04c4a516d4372%26sysparm_view=case + if strings.HasPrefix(region, "eu") { + region = "us-south" + } existingTerraformOptions := terraform.WithDefaultRetryableErrors(t, &terraform.Options{ TerraformDir: tempTerraformDir, @@ -86,10 +105,21 @@ func setupTerraform(t *testing.T, prefix, realTerraformDir string) *terraform.Op return existingTerraformOptions } func setupQuickstartOptions(t *testing.T, prefix string) *testschematic.TestSchematicOptions { + rand, err := rand.Int(rand.Reader, big.NewInt(int64(len(validClusterRegions)))) + if err != nil { + fmt.Println("Error generating random number:", err) + return nil + } + region := validClusterRegions[rand.Int64()] + // # Temp workaround for : https://watson.service-now.com/nav_to.do?uri=sn_customerservice_case.do?sys_id=a9dbcdef47bae2504fc04c4a516d4372%26sysparm_view=case + if strings.HasPrefix(region, "eu") { + region = "us-south" + } options := testschematic.TestSchematicOptionsDefault(&testschematic.TestSchematicOptions{ Testing: t, Prefix: prefix, ResourceGroup: resourceGroup, + Region: region, TarIncludePatterns: []string{ "*.tf", quickStartTerraformDir + "/*.tf", "scripts/*.sh", "kubeconfig/README.md", @@ -102,7 +132,7 @@ func setupQuickstartOptions(t *testing.T, prefix string) *testschematic.TestSche options.TerraformVars = []testschematic.TestSchematicTerraformVar{ {Name: "ibmcloud_api_key", Value: options.RequiredEnvironmentVars["TF_VAR_ibmcloud_api_key"], DataType: "string", Secure: true}, {Name: "prefix", Value: options.Prefix, DataType: "string"}, - {Name: "region", Value: "us-south", DataType: "string"}, + {Name: "region", Value: region, DataType: "string"}, {Name: "existing_resource_group_name", Value: resourceGroup, DataType: "string"}, {Name: "size", Value: "mini", DataType: "string"}, } From 7d88ecb7ebb29bc398a4981cd95541d1e596378c Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 25 Jul 2025 12:38:54 +0530 Subject: [PATCH 11/32] Updated catalog --- ibm_catalog.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibm_catalog.json b/ibm_catalog.json index 08cf2224..0d852860 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1148,7 +1148,7 @@ { "key": "default_worker_pool_operating_system", "display_name":"operating_system", - "hidden": true, + "required": true, "options": [ { "displayname": "RHEL 9", From 43acc7bc3487a9e39d64ca8b98dbf8507d8d17c0 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 25 Jul 2025 16:37:02 +0530 Subject: [PATCH 12/32] SKIP UPGRADE TEST From 1ba7cb732a702d091c3274395a6ef55ce4ed1c8f Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Mon, 28 Jul 2025 09:59:35 +0530 Subject: [PATCH 13/32] Updated permission --- ibm_catalog.json | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/ibm_catalog.json b/ibm_catalog.json index 0d852860..d92727c1 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -997,7 +997,7 @@ "crn:v1:bluemix:public:iam::::serviceRole:Manager", "crn:v1:bluemix:public:iam::::role:Administrator" ], - "notes": "Required to create and edit OpenShift cluster and the related resources." + "notes": "Required to reset API keys, create and edit the OpenShift cluster, and manage all related resources." }, { "service_name": "iam-identity", @@ -1005,22 +1005,29 @@ "crn:v1:bluemix:public:iam::::role:Administrator", "crn:v1:bluemix:public:iam-identity::::serviceRole:UserApiKeyCreator" ], - "notes": "Required to create the containers-kubernetes-key needed by the OpenShift cluster on IBM Cloud." + "notes": "Required to create the containers-kubernetes-key needed by the OpenShift cluster on IBM Cloud and for managing and operating resources within the IBM Cloud environment." }, { "service_name": "is.vpc", "role_crns": [ - "crn:v1:bluemix:public:iam::::role:Administrator" + "crn:v1:bluemix:public:iam::::role:Editor" ], "notes": "Required for creating Virtual Private Cloud(VPC)." }, { - "service_name": "cloud-object-storage", + "service_name": "cloud-object-storage", + "role_crns": [ + "crn:v1:bluemix:public:iam::::serviceRole:Writer", + "crn:v1:bluemix:public:iam::::role:Editor" + ], + "notes": "Required to write data and manage the OpenShift cluster's internal registry storage bucket." + }, + { "role_crns": [ - "crn:v1:bluemix:public:iam::::serviceRole:Manager", - "crn:v1:bluemix:public:iam::::role:Editor" + "crn:v1:bluemix:public:iam::::role:Viewer" ], - "notes": "Required to create Cloud Object Storage (COS) Instance." + "service_name": "Resource group only", + "notes":"Viewer access is required in the resource group you want to provision in." } ], "architecture": { From 85afa9d51d845aa7ff6707e465e5bb5199c8f4c9 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Tue, 29 Jul 2025 14:07:27 +0530 Subject: [PATCH 14/32] Addressed review comments --- ibm_catalog.json | 6 +++--- .../deployable-architecture-ocp-cluster-qs.svg | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ibm_catalog.json b/ibm_catalog.json index d92727c1..3a112f25 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -976,7 +976,7 @@ "terraform_version": "1.10.5" }, { - "label": "[Experimental] Quickstart", + "label": "Quickstart", "name": "quickstart", "index": 1, "install_type": "fullstack", @@ -1034,7 +1034,7 @@ "features": [ { "title": " ", - "description": "Configured to use IBM secure by default standards, but can be edited to fit your use case." + "description": "Configures quickstart deployment of a Red Hat OpenShift cluster within an IBM Cloud VPC with limited options." } ], "diagrams": [ @@ -1044,7 +1044,7 @@ "url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/refs/heads/main/reference-architecture/deployable-architecture-ocp-cluster.svg", "type": "image/svg+xml" }, - "description": "This QuickStart Deployable Architecture enables single-click deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC) using a single monolithic Terraform configuration. It provisions both the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup.

Users can select from predefined cluster sizes — mini (default), small, medium, and large — each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor) accordingly. The machine type defines the CPU, memory, and disk capacity of worker nodes, directly shaping the cluster’s performance and capacity.

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster, ensuring seamless storage integration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with IBM Cloud’s proven infrastructure, integrated storage services, and right-sized compute resources." + "description": "This quickstart variation of deployable architecture enables single-click deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC). It provisions both the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup.

Users can select from predefined cluster sizes — mini (default), small, medium, and large — each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor) accordingly. The machine type defines the CPU, memory, and disk capacity of worker nodes, directly shaping the cluster’s performance and capacity.

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster, ensuring seamless storage integration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with IBM Cloud’s proven infrastructure, integrated storage services, and right-sized compute resources." } ] }, diff --git a/reference-architecture/deployable-architecture-ocp-cluster-qs.svg b/reference-architecture/deployable-architecture-ocp-cluster-qs.svg index 0e1e8fe1..1c56984a 100644 --- a/reference-architecture/deployable-architecture-ocp-cluster-qs.svg +++ b/reference-architecture/deployable-architecture-ocp-cluster-qs.svg @@ -1,4 +1,4 @@ -
ACL
locked
IBM Cloud
Region
Resource GroupVPCOpenShift
Zone 2
Zone 1
Worker NodeWorker Node
Worker Pool
Registry Bucket
           Cloud Object Storage 
\ No newline at end of file +
ACL
locked
IBM Cloud
Region
Resource GroupVPC
Worker node
Zone 2
Zone 1
Worker Pool
Worker Node
Worker Node
Openshift
Registry Bucket
           Cloud Object Storage 
\ No newline at end of file From 3406b30c63f79e3f688175d77d38295f385b7619 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Thu, 31 Jul 2025 11:31:00 +0530 Subject: [PATCH 15/32] Adressed review comments --- ibm_catalog.json | 5 ++--- tests/pr_test.go | 8 -------- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/ibm_catalog.json b/ibm_catalog.json index 05f4a680..f340c77f 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1074,7 +1074,7 @@ { "diagram": { "caption": "Red Hat OpenShift cluster topology - Quickstart", - "url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/refs/heads/main/reference-architecture/deployable-architecture-ocp-cluster.svg", + "url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/refs/heads/main/reference-architecture/deployable-architecture-ocp-cluster-qs.svg", "type": "image/svg+xml" }, "description": "This quickstart variation of deployable architecture enables single-click deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC). It provisions both the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup.

Users can select from predefined cluster sizes — mini (default), small, medium, and large — each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor) accordingly. The machine type defines the CPU, memory, and disk capacity of worker nodes, directly shaping the cluster’s performance and capacity.

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster, ensuring seamless storage integration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with IBM Cloud’s proven infrastructure, integrated storage services, and right-sized compute resources." @@ -1205,8 +1205,7 @@ ] }, { - "key": "address_prefix", - "hidden":true + "key": "address_prefix" }, { "key": "cluster_config_endpoint_type", diff --git a/tests/pr_test.go b/tests/pr_test.go index 3ed58032..1892954f 100644 --- a/tests/pr_test.go +++ b/tests/pr_test.go @@ -82,10 +82,6 @@ func setupTerraform(t *testing.T, prefix, realTerraformDir string) *terraform.Op apiKey := validateEnvVariable(t, "TF_VAR_ibmcloud_api_key") region, err := testhelper.GetBestVpcRegion(apiKey, "../common-dev-assets/common-go-assets/cloudinfo-region-vpc-gen2-prefs.yaml", "eu-de") require.NoError(t, err, "Failed to get best VPC region") - // # Temp workaround for : https://watson.service-now.com/nav_to.do?uri=sn_customerservice_case.do?sys_id=a9dbcdef47bae2504fc04c4a516d4372%26sysparm_view=case - if strings.HasPrefix(region, "eu") { - region = "us-south" - } existingTerraformOptions := terraform.WithDefaultRetryableErrors(t, &terraform.Options{ TerraformDir: tempTerraformDir, @@ -111,10 +107,6 @@ func setupQuickstartOptions(t *testing.T, prefix string) *testschematic.TestSche return nil } region := validClusterRegions[rand.Int64()] - // # Temp workaround for : https://watson.service-now.com/nav_to.do?uri=sn_customerservice_case.do?sys_id=a9dbcdef47bae2504fc04c4a516d4372%26sysparm_view=case - if strings.HasPrefix(region, "eu") { - region = "us-south" - } options := testschematic.TestSchematicOptionsDefault(&testschematic.TestSchematicOptions{ Testing: t, Prefix: prefix, From d3f5f39e8fea98816fa678a9140b1de9a9b154b0 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Thu, 31 Jul 2025 11:39:34 +0530 Subject: [PATCH 16/32] Addressed review comments --- tests/pr_test.go | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/tests/pr_test.go b/tests/pr_test.go index 1892954f..6c51fd82 100644 --- a/tests/pr_test.go +++ b/tests/pr_test.go @@ -2,10 +2,8 @@ package test import ( - "crypto/rand" "fmt" "log" - "math/big" "os" "strings" "testing" @@ -101,12 +99,9 @@ func setupTerraform(t *testing.T, prefix, realTerraformDir string) *terraform.Op return existingTerraformOptions } func setupQuickstartOptions(t *testing.T, prefix string) *testschematic.TestSchematicOptions { - rand, err := rand.Int(rand.Reader, big.NewInt(int64(len(validClusterRegions)))) - if err != nil { - fmt.Println("Error generating random number:", err) - return nil - } - region := validClusterRegions[rand.Int64()] + apiKey := validateEnvVariable(t, "TF_VAR_ibmcloud_api_key") + region, err := testhelper.GetBestVpcRegion(apiKey, "../common-dev-assets/common-go-assets/cloudinfo-region-vpc-gen2-prefs.yaml", "eu-de") + require.NoError(t, err, "Failed to get best VPC region") options := testschematic.TestSchematicOptionsDefault(&testschematic.TestSchematicOptions{ Testing: t, Prefix: prefix, From 1e5511fca170d5134e08ff86b7af2de4b1e57b0d Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Thu, 31 Jul 2025 13:20:59 +0530 Subject: [PATCH 17/32] Addressed review comments --- .secrets.baseline | 4 ++-- tests/pr_test.go | 13 ------------- 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/.secrets.baseline b/.secrets.baseline index f58c7c77..04c997a1 100644 --- a/.secrets.baseline +++ b/.secrets.baseline @@ -3,7 +3,7 @@ "files": "go.sum|^.secrets.baseline$", "lines": null }, - "generated_at": "2025-07-25T06:50:54Z", + "generated_at": "2025-07-31T06:11:34Z", "plugins_used": [ { "name": "AWSKeyDetector" @@ -82,7 +82,7 @@ "hashed_secret": "8196b86ede820e665b2b8af9c648f4996be99838", "is_secret": false, "is_verified": false, - "line_number": 82, + "line_number": 89, "type": "Secret Keyword", "verified_result": null } diff --git a/tests/pr_test.go b/tests/pr_test.go index 6c51fd82..16c0c547 100644 --- a/tests/pr_test.go +++ b/tests/pr_test.go @@ -29,19 +29,6 @@ const resourceGroup = "geretain-test-base-ocp-vpc" // Define a struct with fields that match the structure of the YAML data const yamlLocation = "../common-dev-assets/common-go-assets/common-permanent-resources.yaml" -var validClusterRegions = []string{ - "us-south", - "br-sao", - "eu-gb", - "jp-tok", - "au-syd", - "eu-de", - "eu-gb", - "eu-es", - "jp-osa", - "us-east", -} - // Ensure there is one test per supported OCP version const ocpVersion1 = "4.18" // used by TestRunFullyConfigurable, TestRunUpgradeFullyConfigurable, TestFSCloudInSchematic and TestRunMultiClusterExample const ocpVersion2 = "4.17" // used by TestCustomSGExample and TestRunCustomsgExample From 648faed07ed0f3c56903edc107213e619a1a4e09 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 1 Aug 2025 07:51:31 +0530 Subject: [PATCH 18/32] Updated code --- solutions/quickstart/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/quickstart/main.tf b/solutions/quickstart/main.tf index a7b4894f..bb276d15 100644 --- a/solutions/quickstart/main.tf +++ b/solutions/quickstart/main.tf @@ -102,7 +102,7 @@ locals { } } - selected = lookup(local.size_config, var.size, local.size_config["mini"]) + selected = lookup(local.size_config, var.size, local.size_config[var.size]) worker_pools = concat( [ From 4554d601ddcfa8ab6bf5f49951468d20f6ff17f3 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Thu, 7 Aug 2025 15:23:53 +0530 Subject: [PATCH 19/32] Addressed comments --- ibm_catalog.json | 15 ++-- ...deployable-architecture-ocp-cluster-qs.svg | 2 +- solutions/quickstart/DA_docs.md | 23 ++++++ solutions/quickstart/main.tf | 73 +++++++++++-------- solutions/quickstart/variables.tf | 4 +- 5 files changed, 75 insertions(+), 42 deletions(-) create mode 100644 solutions/quickstart/DA_docs.md diff --git a/ibm_catalog.json b/ibm_catalog.json index 94140d7f..5c5b0ae1 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1050,10 +1050,10 @@ { "service_name": "cloud-object-storage", "role_crns": [ - "crn:v1:bluemix:public:iam::::serviceRole:Writer", + "crn:v1:bluemix:public:iam::::serviceRole:Manager", "crn:v1:bluemix:public:iam::::role:Editor" ], - "notes": "Required to write data and manage the OpenShift cluster's internal registry storage bucket." + "notes": "Required to edit data and manage the OpenShift cluster's internal registry storage bucket." }, { "role_crns": [ @@ -1156,11 +1156,11 @@ "hidden": true }, { - "key": "cluster_name" + "key": "cluster_name", + "hidden": true }, { "key": "ocp_version", - "required": true, "display_name": "openshift_version", "options": [ { @@ -1188,7 +1188,6 @@ { "key": "default_worker_pool_operating_system", "display_name":"operating_system", - "required": true, "options": [ { "displayname": "RHEL 9", @@ -1205,7 +1204,8 @@ ] }, { - "key": "address_prefix" + "key": "address_prefix", + "hidden": true }, { "key": "cluster_config_endpoint_type", @@ -1252,7 +1252,8 @@ "key": "disable_outbound_traffic_protection" }, { - "key": "use_private_endpoint" + "key": "use_private_endpoint", + "hidden": true } ] diff --git a/reference-architecture/deployable-architecture-ocp-cluster-qs.svg b/reference-architecture/deployable-architecture-ocp-cluster-qs.svg index 1c56984a..de9d5808 100644 --- a/reference-architecture/deployable-architecture-ocp-cluster-qs.svg +++ b/reference-architecture/deployable-architecture-ocp-cluster-qs.svg @@ -1,4 +1,4 @@ -
ACL
locked
IBM Cloud
Region
Resource GroupVPC
Worker node
Zone 2
Zone 1
Worker Pool
Worker Node
Worker Node
Openshift
Registry Bucket
           Cloud Object Storage 
\ No newline at end of file +
ACL
locked
IBM Cloud
Region
Resource GroupVPC
Worker node
Openshift
Zone 3
Zone 2
Zone 1
Subnet
Worker Node
Worker Pool
Registry Bucket
           Cloud Object Storage 
\ No newline at end of file diff --git a/solutions/quickstart/DA_docs.md b/solutions/quickstart/DA_docs.md new file mode 100644 index 00000000..f9e744b9 --- /dev/null +++ b/solutions/quickstart/DA_docs.md @@ -0,0 +1,23 @@ +# Cluster Size Configuration + +This document describes the cluster size options and their configuration details. + +## Cluster Table + +| T-Shirt Size | Number of Worker Nodes | Zones | vCPU per Node | Memory per Node (GB) | Disk per Node (GB) | Worker Node Flavor Name | HA Level | Notes | +|--------------|-----------------------|-------|---------------|----------------------|--------------------|------------------------|--------------------|----------------------------------------------------------| +| Mini | 2 | 1 | 4 | 16 | 100 | bx2.4x16 | Moderate (Basic) | Smallest possible; basic HA across 2 zones | | +| Small | 3 | 3 | 8 | 32 | 200 | bx2.8x32 | High | Entry-level production HA | | +| Medium | 5 | 3 | 8 | 32 | 200 | bx2.8x32 | High | Moderate workloads, better HA | | +| Large | 7 | 3 | 16 | 64 | 400 | bx2.16x64 | High | Large-scale, robust HA | | + +## Configuration Block + +```hcl +size_config = { + mini = { + flavor = "bx2.4x16" + workers_per_zone = 2 + zones = 2 + } +} diff --git a/solutions/quickstart/main.tf b/solutions/quickstart/main.tf index bb276d15..0d938b77 100644 --- a/solutions/quickstart/main.tf +++ b/solutions/quickstart/main.tf @@ -80,50 +80,59 @@ module "vpc" { locals { size_config = { mini = { - flavor = "bx2.4x16" - workers_per_zone = 2 - zones = 2 + flavor = "bx2.4x16" + total_workers = 2 + zones = 2 } small = { - flavor = "bx2.8x32" - workers_per_zone = 3 - zones = 3 + flavor = "bx2.8x32" + total_workers = 3 + zones = 3 } medium = { - flavor = "bx2.8x32" - workers_per_zone = 5 - zones = 3 + flavor = "bx2.8x32" + total_workers = 5 + zones = 3 } large = { - flavor = "bx2.16x64" - workers_per_zone = 7 - zones = 3 + flavor = "bx2.16x64" + total_workers = 7 + zones = 3 } } - selected = lookup(local.size_config, var.size, local.size_config[var.size]) + selected = lookup(local.size_config, var.size, local.size_config[var.size]) + base_workers_per_zone = floor(local.selected.total_workers / local.selected.zones) + extra_workers = local.selected.total_workers % local.selected.zones - worker_pools = concat( - [ - { - subnet_prefix = "zone-1" - pool_name = "default" # Exactly 'default' here - machine_type = local.selected.flavor - workers_per_zone = local.selected.workers_per_zone - operating_system = var.default_worker_pool_operating_system - } - ], - [ - for count in range(2, local.selected.zones + 1) : { - subnet_prefix = "zone-${count}" - pool_name = "workerpool-${count}" # 'workerpool-2', 'workerpool-3', etc. - machine_type = local.selected.flavor - workers_per_zone = local.selected.workers_per_zone - operating_system = var.default_worker_pool_operating_system + + workers_distribution = [ + for i in range(local.selected.zones) : + local.base_workers_per_zone + (i < local.extra_workers ? 1 : 0) + ] + # Build the vpc_subnets for default pool + cluster_vpc_subnets = { + default = [ + for i in range(local.selected.zones) : { + id = module.vpc.subnet_zone_list[i].id + cidr_block = module.vpc.subnet_zone_list[i].cidr + zone = module.vpc.subnet_zone_list[i].zone } ] - ) + } + max_workers_per_zone = max(local.workers_distribution...) + + worker_pools = [ + { + pool_name = "default" + machine_type = local.selected.flavor + operating_system = var.default_worker_pool_operating_system + workers_per_zone = local.max_workers_per_zone + vpc_subnets = local.cluster_vpc_subnets["default"] + + } + ] } ######################################################################################################################## @@ -137,7 +146,7 @@ module "ocp_base" { ocp_version = var.ocp_version ocp_entitlement = var.ocp_entitlement vpc_id = module.vpc.vpc_id - vpc_subnets = module.vpc.subnet_detail_map + vpc_subnets = local.cluster_vpc_subnets worker_pools = local.worker_pools disable_outbound_traffic_protection = var.disable_outbound_traffic_protection access_tags = var.access_tags diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index 49b8677f..71234702 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -12,7 +12,7 @@ variable "existing_resource_group_name" { } variable "provider_visibility" { - description = "Set the visibility value for the IBM terraform provider. Supported values are `public`, `private`, `public-and-private`. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/guides/custom-service-endpoints)." + description = "Set the visibility value for the IBM terraform provider. Supported values are `public`, `private`, `public-and-private`. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/guides/custom-service-endpoints). [Learn more](https://terraform-ibm-modules.github.io/documentation/#/prefix.md)." type = string default = "private" @@ -87,7 +87,7 @@ variable "access_tags" { variable "size" { type = string - description = "Defines the cluster size and capacity. Valid options are `mini`, `small`, `medium`, and `large`. This setting determines the number of availability zones, worker nodes per zone, and the machine type used for the OpenShift cluster." + description = "Defines the cluster size and capacity. Valid options are `mini`, `small`, `medium`, and `large`. This setting determines the number of availability zones, worker nodes per zone, and the machine type used for the OpenShift cluster. [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/blob/main/solutions/quickstart/DA_docs.md”" default = "mini" } From bc35e90a787a780e0b1162082a1686f1fe4dd855 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Thu, 7 Aug 2025 15:25:11 +0530 Subject: [PATCH 20/32] Updated decsription --- ibm_catalog.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibm_catalog.json b/ibm_catalog.json index 5c5b0ae1..95049cc9 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1077,7 +1077,7 @@ "url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/refs/heads/main/reference-architecture/deployable-architecture-ocp-cluster-qs.svg", "type": "image/svg+xml" }, - "description": "This quickstart variation of deployable architecture enables single-click deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC). It provisions both the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup.

Users can select from predefined cluster sizes — mini (default), small, medium, and large — each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor) accordingly. The machine type defines the CPU, memory, and disk capacity of worker nodes, directly shaping the cluster’s performance and capacity.

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster, ensuring seamless storage integration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with IBM Cloud’s proven infrastructure, integrated storage services, and right-sized compute resources." + "description": "This quickstart variation of deployable architecture enables deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC). It provisions the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup. Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster, ensuring seamless storage integration.

Users can select from predefined cluster sizes — mini (default), small, medium, and large — each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor) accordingly.

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with IBM Cloud's proven infrastructure, integrated storage services, and right-sized compute resources." } ] }, From 15d8763165312aa7bc978e27324baa7a7c7ef1a7 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Thu, 7 Aug 2025 18:17:54 +0530 Subject: [PATCH 21/32] Addressed review comments --- ibm_catalog.json | 45 ++++++------------------------- solutions/quickstart/DA_docs.md | 11 -------- solutions/quickstart/main.tf | 4 +-- solutions/quickstart/variables.tf | 25 +++++------------ tests/pr_test.go | 1 + 5 files changed, 17 insertions(+), 69 deletions(-) diff --git a/ibm_catalog.json b/ibm_catalog.json index 95049cc9..da4db72a 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1030,7 +1030,7 @@ "crn:v1:bluemix:public:iam::::serviceRole:Manager", "crn:v1:bluemix:public:iam::::role:Administrator" ], - "notes": "Required to reset API keys, create and edit the OpenShift cluster, and manage all related resources." + "notes": "Required to reset the cluster API key, create and edit the OpenShift cluster, and manage all related resources." }, { "service_name": "iam-identity", @@ -1038,14 +1038,14 @@ "crn:v1:bluemix:public:iam::::role:Administrator", "crn:v1:bluemix:public:iam-identity::::serviceRole:UserApiKeyCreator" ], - "notes": "Required to create the containers-kubernetes-key needed by the OpenShift cluster on IBM Cloud and for managing and operating resources within the IBM Cloud environment." + "notes": "Required to create the cluster API key needed by the OpenShift cluster on IBM Cloud and for managing and operating resources within the IBM Cloud environment." }, { "service_name": "is.vpc", "role_crns": [ "crn:v1:bluemix:public:iam::::role:Editor" ], - "notes": "Required for creating Virtual Private Cloud(VPC)." + "notes": "Required for creating Virtual Private Cloud (VPC)." }, { "service_name": "cloud-object-storage", @@ -1053,7 +1053,7 @@ "crn:v1:bluemix:public:iam::::serviceRole:Manager", "crn:v1:bluemix:public:iam::::role:Editor" ], - "notes": "Required to edit data and manage the OpenShift cluster's internal registry storage bucket." + "notes": "Required for creating the OpenShift cluster's internal registry storage bucket." }, { "role_crns": [ @@ -1077,7 +1077,7 @@ "url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/refs/heads/main/reference-architecture/deployable-architecture-ocp-cluster-qs.svg", "type": "image/svg+xml" }, - "description": "This quickstart variation of deployable architecture enables deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC). It provisions the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup. Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster, ensuring seamless storage integration.

Users can select from predefined cluster sizes — mini (default), small, medium, and large — each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor) accordingly.

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with IBM Cloud's proven infrastructure, integrated storage services, and right-sized compute resources." + "description": "This quickstart variation of deployable architecture enables deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC). It provisions the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup. Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster, ensuring seamless storage integration.

Users can select from predefined cluster sizes — mini (default), small, medium, and large — each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor) accordingly. [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/blob/main/solutions/quickstart/DA_docs.md).(

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with IBM Cloud's proven infrastructure, integrated storage services, and right-sized compute resources." } ] }, @@ -1087,7 +1087,6 @@ }, { "key": "existing_resource_group_name", - "required":true, "display_name": "resource_group", "custom_config": { "type": "resource_group", @@ -1156,11 +1155,11 @@ "hidden": true }, { - "key": "cluster_name", - "hidden": true + "key": "cluster_name" }, { "key": "ocp_version", + "required": true, "display_name": "openshift_version", "options": [ { @@ -1208,30 +1207,7 @@ "hidden": true }, { - "key": "cluster_config_endpoint_type", - "options": [ - { - "displayname": "default", - "value": "default" - }, - { - "displayname": "private", - "value": "private" - }, - { - "displayname": "vpe", - "value": "vpe" - }, - { - "displayname": "link", - "value": "link" - } - ], - "hidden":true - }, - { - "key": "ocp_entitlement", - "hidden":true + "key": "ocp_entitlement" }, { "key": "access_tags", @@ -1250,12 +1226,7 @@ }, { "key": "disable_outbound_traffic_protection" - }, - { - "key": "use_private_endpoint", - "hidden": true } - ] } ] diff --git a/solutions/quickstart/DA_docs.md b/solutions/quickstart/DA_docs.md index f9e744b9..ee844074 100644 --- a/solutions/quickstart/DA_docs.md +++ b/solutions/quickstart/DA_docs.md @@ -10,14 +10,3 @@ This document describes the cluster size options and their configuration details | Small | 3 | 3 | 8 | 32 | 200 | bx2.8x32 | High | Entry-level production HA | | | Medium | 5 | 3 | 8 | 32 | 200 | bx2.8x32 | High | Moderate workloads, better HA | | | Large | 7 | 3 | 16 | 64 | 400 | bx2.16x64 | High | Large-scale, robust HA | | - -## Configuration Block - -```hcl -size_config = { - mini = { - flavor = "bx2.4x16" - workers_per_zone = 2 - zones = 2 - } -} diff --git a/solutions/quickstart/main.tf b/solutions/quickstart/main.tf index 0d938b77..8dd44dba 100644 --- a/solutions/quickstart/main.tf +++ b/solutions/quickstart/main.tf @@ -151,6 +151,6 @@ module "ocp_base" { disable_outbound_traffic_protection = var.disable_outbound_traffic_protection access_tags = var.access_tags disable_public_endpoint = var.disable_public_endpoint - use_private_endpoint = var.use_private_endpoint - cluster_config_endpoint_type = var.cluster_config_endpoint_type + use_private_endpoint = true + cluster_config_endpoint_type = "default" } diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index 71234702..6a7e3654 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -7,8 +7,8 @@ variable "ibmcloud_api_key" { variable "existing_resource_group_name" { type = string - description = "The name of an existing resource group to provision the cluster." - default = "Default" + description = "The name of an existing resource group to provision the resources. If not provided the default resource group will be used." + default = null } variable "provider_visibility" { @@ -69,7 +69,7 @@ variable "address_prefix" { variable "ocp_entitlement" { type = string description = "Value that is applied to the entitlements for OCP cluster provisioning" - default = "cloud_pak" + default = null } @@ -87,31 +87,18 @@ variable "access_tags" { variable "size" { type = string - description = "Defines the cluster size and capacity. Valid options are `mini`, `small`, `medium`, and `large`. This setting determines the number of availability zones, worker nodes per zone, and the machine type used for the OpenShift cluster. [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/blob/main/solutions/quickstart/DA_docs.md”" + description = "Defines the cluster size and capacity. This setting determines the number of availability zones, worker nodes per zone, and the machine type used for the OpenShift cluster. [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/blob/main/solutions/quickstart/DA_docs.md)." default = "mini" } variable "disable_public_endpoint" { type = bool - description = "Whether access to the public service endpoint is disabled when the cluster is created. Does not affect existing clusters. You can't disable a public endpoint on an existing cluster, so you can't convert a public cluster to a private cluster. To change a public endpoint to private, create another cluster with this input set to `true`." + description = "Disables the public endpoint, which allows internet access to the cluster, during creation only." default = false } variable "disable_outbound_traffic_protection" { type = bool - description = "Whether to allow public outbound access from the cluster workers. This is only applicable for OCP 4.15 and later." + description = "Whether to allow public outbound access from the cluster workers. This is only applicable for OCP 4.15 and later. [Learn more](https://cloud.ibm.com/docs/openshift?topic=openshift-sbd-allow-outbound)." default = true } - -variable "use_private_endpoint" { - type = bool - description = "Set this to true to force all API calls to use the IBM Cloud private endpoints." - default = true -} - -variable "cluster_config_endpoint_type" { - description = "Specify which type of endpoint to use for cluster config access: 'default', 'private', 'vpe', 'link'. A 'default' value uses the default endpoint of the cluster." - type = string - default = "default" - nullable = true -} diff --git a/tests/pr_test.go b/tests/pr_test.go index 16c0c547..907aba76 100644 --- a/tests/pr_test.go +++ b/tests/pr_test.go @@ -109,6 +109,7 @@ func setupQuickstartOptions(t *testing.T, prefix string) *testschematic.TestSche {Name: "region", Value: region, DataType: "string"}, {Name: "existing_resource_group_name", Value: resourceGroup, DataType: "string"}, {Name: "size", Value: "mini", DataType: "string"}, + {Name: "ocp_entitlement", Value: "cloud_pak", DataType: "string"}, } return options } From 4912e6c777886b3854b9437b45ce61430d4473d2 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Thu, 7 Aug 2025 18:19:30 +0530 Subject: [PATCH 22/32] Updated diagram --- .../deployable-architecture-ocp-cluster-qs.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference-architecture/deployable-architecture-ocp-cluster-qs.svg b/reference-architecture/deployable-architecture-ocp-cluster-qs.svg index de9d5808..adaa59ce 100644 --- a/reference-architecture/deployable-architecture-ocp-cluster-qs.svg +++ b/reference-architecture/deployable-architecture-ocp-cluster-qs.svg @@ -1,4 +1,4 @@ -
ACL
locked
IBM Cloud
Region
Resource GroupVPC
Worker node
Openshift
Zone 3
Zone 2
Zone 1
Subnet
Worker Node
Worker Pool
Registry Bucket
           Cloud Object Storage 
\ No newline at end of file +
ACL
locked
IBM Cloud
Region
Resource GroupVPC
Worker node
Openshift
Zone 3
Zone 2
Zone 1
Subnet
Worker Node
Worker Pool
Worker Pool
Worker Node
Registry Bucket
           Cloud Object Storage 
\ No newline at end of file From 68a9f04a73f6bd658a23858eea56069678b7f1af Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Thu, 7 Aug 2025 21:13:32 +0530 Subject: [PATCH 23/32] Addressed review comments --- .catalog-onboard-pipeline.yaml | 4 ---- ibm_catalog.json | 11 +---------- .../deployable-architecture-ocp-cluster-qs.svg | 2 +- 3 files changed, 2 insertions(+), 15 deletions(-) diff --git a/.catalog-onboard-pipeline.yaml b/.catalog-onboard-pipeline.yaml index c6150d24..3110933e 100644 --- a/.catalog-onboard-pipeline.yaml +++ b/.catalog-onboard-pipeline.yaml @@ -18,7 +18,3 @@ offerings: - name: quickstart mark_ready: true install_type: fullstack - scc: - instance_id: 1c7d5f78-9262-44c3-b779-b28fe4d88c37 - region: us-south - scope_resource_group_var_name: existing_resource_group_name diff --git a/ibm_catalog.json b/ibm_catalog.json index da4db72a..d0e3a1a1 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1009,20 +1009,11 @@ "terraform_version": "1.10.5" }, { - "label": "Quickstart", + "label": "QuickStart", "name": "quickstart", "index": 1, "install_type": "fullstack", "working_directory": "solutions/quickstart", - "compliance": { - "authority": "scc-v3", - "profiles": [ - { - "profile_name": "IBM Cloud Framework for Financial Services", - "profile_version": "1.7.0" - } - ] - }, "iam_permissions": [ { "service_name": "containers-kubernetes", diff --git a/reference-architecture/deployable-architecture-ocp-cluster-qs.svg b/reference-architecture/deployable-architecture-ocp-cluster-qs.svg index adaa59ce..fdbad4f2 100644 --- a/reference-architecture/deployable-architecture-ocp-cluster-qs.svg +++ b/reference-architecture/deployable-architecture-ocp-cluster-qs.svg @@ -1,4 +1,4 @@ -
ACL
locked
IBM Cloud
Region
Resource GroupVPC
Worker node
Openshift
Zone 3
Zone 2
Zone 1
Subnet
Worker Node
Worker Pool
Worker Pool
Worker Node
Registry Bucket
           Cloud Object Storage 
\ No newline at end of file +
ACL
locked
IBM Cloud
Region
Resource GroupVPC
Worker node
Openshift
Zone 3
Zone 2
Zone 1
Subnet
Worker Node
Worker Pool
Registry Bucket
           Cloud Object Storage 
\ No newline at end of file From daa0a34df66b7ff570097d4faf5b7a4b7ca22704 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Thu, 7 Aug 2025 21:41:12 +0530 Subject: [PATCH 24/32] Updated mark down file and variable.tf --- solutions/quickstart/DA_docs.md | 4 ++-- solutions/quickstart/variables.tf | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/solutions/quickstart/DA_docs.md b/solutions/quickstart/DA_docs.md index ee844074..fc222a53 100644 --- a/solutions/quickstart/DA_docs.md +++ b/solutions/quickstart/DA_docs.md @@ -1,12 +1,12 @@ # Cluster Size Configuration -This document describes the cluster size options and their configuration details. +This document describes the cluster size options and their configuration details.This table determines the number of availability zones, worker nodes per zone, and the machine type used for the OpenShift cluster. ## Cluster Table | T-Shirt Size | Number of Worker Nodes | Zones | vCPU per Node | Memory per Node (GB) | Disk per Node (GB) | Worker Node Flavor Name | HA Level | Notes | |--------------|-----------------------|-------|---------------|----------------------|--------------------|------------------------|--------------------|----------------------------------------------------------| -| Mini | 2 | 1 | 4 | 16 | 100 | bx2.4x16 | Moderate (Basic) | Smallest possible; basic HA across 2 zones | | +| Mini | 2 | 2 | 4 | 16 | 100 | bx2.4x16 | Moderate (Basic) | Smallest possible; basic HA across 2 zones | | | Small | 3 | 3 | 8 | 32 | 200 | bx2.8x32 | High | Entry-level production HA | | | Medium | 5 | 3 | 8 | 32 | 200 | bx2.8x32 | High | Moderate workloads, better HA | | | Large | 7 | 3 | 16 | 64 | 400 | bx2.16x64 | High | Large-scale, robust HA | | diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index 6a7e3654..2f7ee4c4 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -87,7 +87,7 @@ variable "access_tags" { variable "size" { type = string - description = "Defines the cluster size and capacity. This setting determines the number of availability zones, worker nodes per zone, and the machine type used for the OpenShift cluster. [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/blob/main/solutions/quickstart/DA_docs.md)." + description = "Defines the cluster size configuration. [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/blob/main/solutions/quickstart/DA_docs.md)." default = "mini" } From 742968cba15b2c931e16d0ecc31ba999e9d2c1bf Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 8 Aug 2025 00:26:40 +0530 Subject: [PATCH 25/32] resolved review comments --- ibm_catalog.json | 6 ++---- solutions/quickstart/DA_docs.md | 14 ++++++------ solutions/quickstart/README.md | 2 +- solutions/quickstart/main.tf | 36 ++++++++++++------------------- solutions/quickstart/variables.tf | 6 +++--- 5 files changed, 27 insertions(+), 37 deletions(-) diff --git a/ibm_catalog.json b/ibm_catalog.json index d0e3a1a1..76a56c7e 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1058,7 +1058,7 @@ "features": [ { "title": " ", - "description": "Configures quickstart deployment of a Red Hat OpenShift cluster within an IBM Cloud VPC with limited options." + "description": "Configures QuickStart deployment of a Red Hat OpenShift cluster within an IBM Cloud VPC with limited options." } ], "diagrams": [ @@ -1068,7 +1068,7 @@ "url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/refs/heads/main/reference-architecture/deployable-architecture-ocp-cluster-qs.svg", "type": "image/svg+xml" }, - "description": "This quickstart variation of deployable architecture enables deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC). It provisions the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup. Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster, ensuring seamless storage integration.

Users can select from predefined cluster sizes — mini (default), small, medium, and large — each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor) accordingly. [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/blob/main/solutions/quickstart/DA_docs.md).(

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with IBM Cloud's proven infrastructure, integrated storage services, and right-sized compute resources." + "description": "This QuickStart variation of deployable architecture enables deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC). It provisions the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup. Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster. Thus, it helps ensure seamless storage integration.

Users can select from predefined cluster sizes — mini (default), small, medium, and large. Each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor) . [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/blob/main/solutions/quickstart/DA_docs.md).(

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with the infrastructure, integrated storage services, and right-sized compute resources of IBM Cloud." } ] }, @@ -1151,7 +1151,6 @@ { "key": "ocp_version", "required": true, - "display_name": "openshift_version", "options": [ { "displayname": "4.18", @@ -1177,7 +1176,6 @@ }, { "key": "default_worker_pool_operating_system", - "display_name":"operating_system", "options": [ { "displayname": "RHEL 9", diff --git a/solutions/quickstart/DA_docs.md b/solutions/quickstart/DA_docs.md index fc222a53..e79d107d 100644 --- a/solutions/quickstart/DA_docs.md +++ b/solutions/quickstart/DA_docs.md @@ -1,12 +1,12 @@ # Cluster Size Configuration -This document describes the cluster size options and their configuration details.This table determines the number of availability zones, worker nodes per zone, and the machine type used for the OpenShift cluster. +This document describes the cluster size options and their configuration details. This table determines the number of availability zones, worker nodes per zone, and the machine type used for the OpenShift cluster. ## Cluster Table -| T-Shirt Size | Number of Worker Nodes | Zones | vCPU per Node | Memory per Node (GB) | Disk per Node (GB) | Worker Node Flavor Name | HA Level | Notes | -|--------------|-----------------------|-------|---------------|----------------------|--------------------|------------------------|--------------------|----------------------------------------------------------| -| Mini | 2 | 2 | 4 | 16 | 100 | bx2.4x16 | Moderate (Basic) | Smallest possible; basic HA across 2 zones | | -| Small | 3 | 3 | 8 | 32 | 200 | bx2.8x32 | High | Entry-level production HA | | -| Medium | 5 | 3 | 8 | 32 | 200 | bx2.8x32 | High | Moderate workloads, better HA | | -| Large | 7 | 3 | 16 | 64 | 400 | bx2.16x64 | High | Large-scale, robust HA | | +| T-Shirt Size | Number of Worker Nodes per zone | Total Number of Worker Nodes | Zones | vCPU per Node | Memory per Node (GB) | Disk per Node (GB) | Worker Node Flavor Name | HA Level | Notes | +|--------------|------------------------|------------------------------|--------|----------------|------------------------|----------------------|--------------------------|---------------------|--------------------------------------------------------| +| Mini | 1 | 2 | 2 | 4 | 16 | 100 | bx2.4x16 | Moderate (Basic) | Smallest possible; basic HA across 2 zones | +| Small | 1 | 3 | 3 | 8 | 32 | 200 | bx2.8x32 | High | Entry-level production HA | +| Medium | 2 | 6 | 3 | 8 | 32 | 200 | bx2.8x32 | High | Moderate workloads, better HA | +| Large | 3 | 9 | 3 | 16 | 64 | 400 | bx2.16x64 | High | Large-scale, robust HA | diff --git a/solutions/quickstart/README.md b/solutions/quickstart/README.md index 1b55d5e0..805492c0 100644 --- a/solutions/quickstart/README.md +++ b/solutions/quickstart/README.md @@ -1,3 +1,3 @@ -# Cloud automation for Red Hat OpenShift Container Platform on VPC (Quickstart) +# Cloud automation for Red Hat OpenShift Container Platform on VPC (QuickStart) :exclamation: **Important:** This solution is not intended to be called by other modules because it contains a provider configuration and is not compatible with the `for_each`, `count`, and `depends_on` arguments. For more information, see [Providers Within Modules](https://developer.hashicorp.com/terraform/language/modules/develop/providers). diff --git a/solutions/quickstart/main.tf b/solutions/quickstart/main.tf index 8dd44dba..3fff14ae 100644 --- a/solutions/quickstart/main.tf +++ b/solutions/quickstart/main.tf @@ -80,37 +80,30 @@ module "vpc" { locals { size_config = { mini = { - flavor = "bx2.4x16" - total_workers = 2 - zones = 2 + flavor = "bx2.4x16" + workers_per_zone = 1 + zones = 2 } small = { - flavor = "bx2.8x32" - total_workers = 3 - zones = 3 + flavor = "bx2.8x32" + workers_per_zone = 1 + zones = 3 } medium = { - flavor = "bx2.8x32" - total_workers = 5 - zones = 3 + flavor = "bx2.8x32" + workers_per_zone = 2 + zones = 3 } large = { - flavor = "bx2.16x64" - total_workers = 7 - zones = 3 + flavor = "bx2.16x64" + workers_per_zone = 3 + zones = 3 } } - selected = lookup(local.size_config, var.size, local.size_config[var.size]) - base_workers_per_zone = floor(local.selected.total_workers / local.selected.zones) - extra_workers = local.selected.total_workers % local.selected.zones + selected = lookup(local.size_config, var.size, local.size_config[var.size]) - - workers_distribution = [ - for i in range(local.selected.zones) : - local.base_workers_per_zone + (i < local.extra_workers ? 1 : 0) - ] # Build the vpc_subnets for default pool cluster_vpc_subnets = { default = [ @@ -121,14 +114,13 @@ locals { } ] } - max_workers_per_zone = max(local.workers_distribution...) worker_pools = [ { pool_name = "default" machine_type = local.selected.flavor operating_system = var.default_worker_pool_operating_system - workers_per_zone = local.max_workers_per_zone + workers_per_zone = local.selected.workers_per_zone vpc_subnets = local.cluster_vpc_subnets["default"] } diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index 2f7ee4c4..55139e67 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -50,7 +50,7 @@ variable "region" { variable "ocp_version" { type = string description = "Version of the OpenShift cluster to provision." - default = "4.17" + default = null } variable "cluster_name" { @@ -61,14 +61,14 @@ variable "cluster_name" { variable "address_prefix" { - description = "The IP range that will be defined for the VPC for a certain location. Use only with manual address prefixes." + description = "The IP range that defines a certain location for the VPC. Use only with manual address prefixes." type = string default = "10.10.10.0/24" } variable "ocp_entitlement" { type = string - description = "Value that is applied to the entitlements for OCP cluster provisioning" + description = "Value that is applied to the entitlements for OCP cluster provisioning." default = null } From d8c2f7668b220a38177d223e7caf7091265ebcfa Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 8 Aug 2025 07:01:15 +0530 Subject: [PATCH 26/32] addressed review comments --- ibm_catalog.json | 1 + 1 file changed, 1 insertion(+) diff --git a/ibm_catalog.json b/ibm_catalog.json index 76a56c7e..900e1e32 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1150,6 +1150,7 @@ }, { "key": "ocp_version", + "default_value": "4.17", "required": true, "options": [ { From f3a20088d2e942b3592fce7a45a71cb7ffb7ba38 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 8 Aug 2025 09:41:37 +0530 Subject: [PATCH 27/32] Update ibm_catalog.json Co-authored-by: Shikha Maheshwari --- ibm_catalog.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibm_catalog.json b/ibm_catalog.json index 900e1e32..7296ae3c 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1044,7 +1044,7 @@ "crn:v1:bluemix:public:iam::::serviceRole:Manager", "crn:v1:bluemix:public:iam::::role:Editor" ], - "notes": "Required for creating the OpenShift cluster's internal registry storage bucket." + "notes": "Required for creating the OpenShift cluster's internal registry storage bucket." }, { "role_crns": [ From 056e57a6e3f8bee3d4448ed3f50aa96eb808f18e Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 8 Aug 2025 09:41:47 +0530 Subject: [PATCH 28/32] Update ibm_catalog.json Co-authored-by: Shikha Maheshwari --- ibm_catalog.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ibm_catalog.json b/ibm_catalog.json index 7296ae3c..aca1dac2 100644 --- a/ibm_catalog.json +++ b/ibm_catalog.json @@ -1068,7 +1068,7 @@ "url": "https://raw.githubusercontent.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/refs/heads/main/reference-architecture/deployable-architecture-ocp-cluster-qs.svg", "type": "image/svg+xml" }, - "description": "This QuickStart variation of deployable architecture enables deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC). It provisions the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup. Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster. Thus, it helps ensure seamless storage integration.

Users can select from predefined cluster sizes — mini (default), small, medium, and large. Each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor) . [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/blob/main/solutions/quickstart/DA_docs.md).(

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with the infrastructure, integrated storage services, and right-sized compute resources of IBM Cloud." + "description": "This QuickStart variation of deployable architecture enables deployment of a Red Hat OpenShift cluster within an IBM Cloud Virtual Private Cloud (VPC). It provisions the OpenShift cluster and its foundational VPC infrastructure with a limited set of essential options for rapid and streamlined setup. Additionally, the deployment creates an Object Storage bucket that serves as the internal container image registry for the OpenShift cluster. Thus, it helps ensure seamless storage integration.

Users can select from predefined cluster sizes — mini (default), small, medium, and large. Each size determining the number of availability zones, worker nodes per zone, and the machine type (worker node flavor). [Learn more](https://github.com/terraform-ibm-modules/terraform-ibm-base-ocp-vpc/blob/main/solutions/quickstart/DA_docs.md).

By default, the architecture provisions a two-zone VPC, forming the foundation for the OpenShift cluster. The cluster comprises a single worker pool distributed across these zones, with two worker nodes per zone in the mini configuration.

This streamlined architecture balances ease of use with flexibility, enabling rapid OpenShift cluster deployments with the infrastructure, integrated storage services, and right-sized compute resources of IBM Cloud." } ] }, From c8a2addf073a7e69a183e10b2fac9a9f55fc2a80 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 8 Aug 2025 09:41:55 +0530 Subject: [PATCH 29/32] Update solutions/quickstart/variables.tf Co-authored-by: Shikha Maheshwari --- solutions/quickstart/variables.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index 55139e67..3727b45b 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -75,7 +75,7 @@ variable "ocp_entitlement" { variable "default_worker_pool_operating_system" { type = string - description = "The operating system installed on the worker nodes. [Learn more](https://cloud.ibm.com/docs/openshift?topic=openshift-vpc-flavors)" + description = "The operating system installed on the worker nodes. [Learn more](https://cloud.ibm.com/docs/openshift?topic=openshift-vpc-flavors)." default = "RHEL_9_64" } From 4d5f6ec8b943127dca65ff16fe358b2f79a0af20 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 8 Aug 2025 09:54:16 +0530 Subject: [PATCH 30/32] Addressed comments --- solutions/quickstart/DA_docs.md | 2 +- solutions/quickstart/outputs.tf | 28 ++++++++++++++++++++++++++++ solutions/quickstart/variables.tf | 4 ++-- 3 files changed, 31 insertions(+), 3 deletions(-) diff --git a/solutions/quickstart/DA_docs.md b/solutions/quickstart/DA_docs.md index e79d107d..b310b658 100644 --- a/solutions/quickstart/DA_docs.md +++ b/solutions/quickstart/DA_docs.md @@ -4,7 +4,7 @@ This document describes the cluster size options and their configuration details ## Cluster Table -| T-Shirt Size | Number of Worker Nodes per zone | Total Number of Worker Nodes | Zones | vCPU per Node | Memory per Node (GB) | Disk per Node (GB) | Worker Node Flavor Name | HA Level | Notes | +| Size | Number of Worker Nodes per zone | Total Number of Worker Nodes | Zones | vCPU per Node | Memory per Node (GB) | Disk per Node (GB) | Worker Node Flavor Name | HA Level | Notes | |--------------|------------------------|------------------------------|--------|----------------|------------------------|----------------------|--------------------------|---------------------|--------------------------------------------------------| | Mini | 1 | 2 | 2 | 4 | 16 | 100 | bx2.4x16 | Moderate (Basic) | Smallest possible; basic HA across 2 zones | | Small | 1 | 3 | 3 | 8 | 32 | 200 | bx2.8x32 | High | Entry-level production HA | diff --git a/solutions/quickstart/outputs.tf b/solutions/quickstart/outputs.tf index e69de29b..ac2fdfde 100644 --- a/solutions/quickstart/outputs.tf +++ b/solutions/quickstart/outputs.tf @@ -0,0 +1,28 @@ +######################################################################################################################## +# Outputs +######################################################################################################################## + +output "cluster_name" { + value = module.ocp_base.cluster_name + description = "The name of the provisioned OpenShift cluster." +} + +output "cluster_id" { + value = module.ocp_base.cluster_id + description = "The unique identifier assigned to the provisioned OpenShift cluster." +} + +output "cluster_crn" { + description = "The Cloud Resource Name (CRN) of the provisioned OpenShift cluster." + value = module.ocp_base.cluster_crn +} + +output "vpc_id" { + description = "The ID of the Virtual Private Cloud (VPC) in which the cluster is deployed." + value = module.ocp_base.vpc_id +} + +output "region" { + description = "The IBM Cloud region where the cluster is deployed." + value = module.ocp_base.region +} diff --git a/solutions/quickstart/variables.tf b/solutions/quickstart/variables.tf index 3727b45b..558c4fca 100644 --- a/solutions/quickstart/variables.tf +++ b/solutions/quickstart/variables.tf @@ -12,7 +12,7 @@ variable "existing_resource_group_name" { } variable "provider_visibility" { - description = "Set the visibility value for the IBM terraform provider. Supported values are `public`, `private`, `public-and-private`. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/guides/custom-service-endpoints). [Learn more](https://terraform-ibm-modules.github.io/documentation/#/prefix.md)." + description = "Set the visibility value for the IBM terraform provider. [Learn more](https://registry.terraform.io/providers/IBM-Cloud/ibm/latest/docs/guides/custom-service-endpoints)." type = string default = "private" @@ -24,7 +24,7 @@ variable "provider_visibility" { variable "prefix" { type = string - description = "The prefix to be added to all resources created by this solution. To skip using a prefix, set this value to null or an empty string. The prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It should not exceed 16 characters, must not end with a hyphen('-'), and cannot contain consecutive hyphens ('--'). Example: `prod-0205-ocpqs`." + description = "The prefix to be added to all resources created by this solution. To skip using a prefix, set this value to null or an empty string. The prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It should not exceed 16 characters, must not end with a hyphen('-'), and cannot contain consecutive hyphens ('--'). Example: `prod-0205-ocpqs`. [Learn more](https://terraform-ibm-modules.github.io/documentation/#/prefix.md)." nullable = true validation { condition = (var.prefix == null || var.prefix == "" ? true : From c2a20892b5115aa468fa33f46058221a8ba0ed8f Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 8 Aug 2025 10:39:41 +0530 Subject: [PATCH 31/32] Updated catalog validation,resource_group an output.tf --- .../catalogValidationValues.json.template | 1 + solutions/quickstart/main.tf | 2 +- solutions/quickstart/outputs.tf | 30 +++++++++++++++++++ 3 files changed, 32 insertions(+), 1 deletion(-) diff --git a/solutions/quickstart/catalogValidationValues.json.template b/solutions/quickstart/catalogValidationValues.json.template index f228f858..30a3637b 100644 --- a/solutions/quickstart/catalogValidationValues.json.template +++ b/solutions/quickstart/catalogValidationValues.json.template @@ -2,4 +2,5 @@ "ibmcloud_api_key": $VALIDATION_APIKEY, "prefix": $PREFIX, "size": "mini" + "existing_resource_group_name": "Default" } diff --git a/solutions/quickstart/main.tf b/solutions/quickstart/main.tf index 3fff14ae..745cde88 100644 --- a/solutions/quickstart/main.tf +++ b/solutions/quickstart/main.tf @@ -3,7 +3,7 @@ ####################################################################################################################### module "resource_group" { source = "terraform-ibm-modules/resource-group/ibm" - version = "1.2.1" + version = "1.3.0" existing_resource_group_name = var.existing_resource_group_name } diff --git a/solutions/quickstart/outputs.tf b/solutions/quickstart/outputs.tf index ac2fdfde..e6f5e778 100644 --- a/solutions/quickstart/outputs.tf +++ b/solutions/quickstart/outputs.tf @@ -17,6 +17,11 @@ output "cluster_crn" { value = module.ocp_base.cluster_crn } +output "vpc_name" { + description = "The name of the Virtual Private Cloud (VPC) in which the cluster is deployed." + value = module.vpc.vpc_name +} + output "vpc_id" { description = "The ID of the Virtual Private Cloud (VPC) in which the cluster is deployed." value = module.ocp_base.vpc_id @@ -26,3 +31,28 @@ output "region" { description = "The IBM Cloud region where the cluster is deployed." value = module.ocp_base.region } + +output "cos_crn" { + description = "The Cloud Resource Name (CRN) of the Object Storage instance associated with the cluster." + value = module.ocp_base.cos_crn +} + +output "resource_group_id" { + description = "The ID of the resource group where the cluster is deployed." + value = module.ocp_base.resource_group_id +} + +output "public_service_endpoint_url" { + description = "The public service endpoint URL for accessing the cluster over the internet." + value = module.ocp_base.public_service_endpoint_url +} + +output "master_url" { + description = "The API endpoint URL for the Kubernetes master node of the cluster." + value = module.ocp_base.master_url +} + +output "master_status" { + description = "The current status of the Kubernetes master node in the cluster." + value = module.ocp_base.master_status +} \ No newline at end of file From c7e2e8802919b5e4ecb41e3771d7547614e14470 Mon Sep 17 00:00:00 2001 From: Arya Girish K Date: Fri, 8 Aug 2025 10:44:24 +0530 Subject: [PATCH 32/32] Resolved precommit error --- solutions/quickstart/catalogValidationValues.json.template | 2 +- solutions/quickstart/outputs.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/solutions/quickstart/catalogValidationValues.json.template b/solutions/quickstart/catalogValidationValues.json.template index 30a3637b..d8e67ee3 100644 --- a/solutions/quickstart/catalogValidationValues.json.template +++ b/solutions/quickstart/catalogValidationValues.json.template @@ -1,6 +1,6 @@ { "ibmcloud_api_key": $VALIDATION_APIKEY, "prefix": $PREFIX, - "size": "mini" + "size": "mini", "existing_resource_group_name": "Default" } diff --git a/solutions/quickstart/outputs.tf b/solutions/quickstart/outputs.tf index e6f5e778..1bf93ced 100644 --- a/solutions/quickstart/outputs.tf +++ b/solutions/quickstart/outputs.tf @@ -55,4 +55,4 @@ output "master_url" { output "master_status" { description = "The current status of the Kubernetes master node in the cluster." value = module.ocp_base.master_status -} \ No newline at end of file +}