From 59063f6c78d99d5018df4316f92306729691da42 Mon Sep 17 00:00:00 2001 From: Steffen <5519671+sk31337@users.noreply.github.com> Date: Wed, 22 Oct 2025 15:20:43 +0200 Subject: [PATCH 01/12] feat: helm chart crossplane-provider-btp-security - RoleCollectionAssignment subaccountApiCredentialRef added --- .../templates/role-collection-assignment.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/helm/charts/crossplane-provider-btp-security/templates/role-collection-assignment.yaml b/helm/charts/crossplane-provider-btp-security/templates/role-collection-assignment.yaml index a270e5c..2a5fe79 100644 --- a/helm/charts/crossplane-provider-btp-security/templates/role-collection-assignment.yaml +++ b/helm/charts/crossplane-provider-btp-security/templates/role-collection-assignment.yaml @@ -17,9 +17,13 @@ spec: apiCredentials: {{- $item.apiCredentials | toYaml | nindent 4 }} {{- end }} + {{- if $item.subaccountApiCredentialRef}} + subaccountApiCredentialRef: + {{- $item.subaccountApiCredentialRef | toYaml | nindent 4 }} + {{- end }} {{- if $item.writeConnectionSecretToRef}} writeConnectionSecretToRef: {{- $item.writeConnectionSecretToRef | toYaml | nindent 4 }} {{- end }} {{- end }} -{{- end }} \ No newline at end of file +{{- end }} From bf52cef42fb1f3e27fc1a170ebaa13c8eb62518f Mon Sep 17 00:00:00 2001 From: sk31337 Date: Wed, 22 Oct 2025 13:21:24 +0000 Subject: [PATCH 02/12] chore(ci): update helm/charts/crossplane-provider-btp-security/Chart.yaml.version 0.0.14 -> 0.0.15 --- helm/charts/crossplane-provider-btp-security/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/charts/crossplane-provider-btp-security/Chart.yaml b/helm/charts/crossplane-provider-btp-security/Chart.yaml index 82218c6..89f0fc6 100644 --- a/helm/charts/crossplane-provider-btp-security/Chart.yaml +++ b/helm/charts/crossplane-provider-btp-security/Chart.yaml @@ -17,7 +17,7 @@ icon: "https://avatars.githubusercontent.com/u/45158470?s=48&v=4" # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.0.14 +version: 0.0.15 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. From 86713ad69c8158b828946c8e77c18740c97ed30c Mon Sep 17 00:00:00 2001 From: sk31337 Date: Wed, 22 Oct 2025 13:21:27 +0000 Subject: [PATCH 03/12] chore(ci): update Helm Chart helm/charts/crossplane-provider-btp-security/README.md file --- helm/charts/crossplane-provider-btp-security/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/charts/crossplane-provider-btp-security/README.md b/helm/charts/crossplane-provider-btp-security/README.md index 1a66e93..9ba7f70 100644 --- a/helm/charts/crossplane-provider-btp-security/README.md +++ b/helm/charts/crossplane-provider-btp-security/README.md @@ -2,7 +2,7 @@ # crossplane-provider-btp-security -![Version: 0.0.14](https://img.shields.io/badge/Version-0.0.14-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.2](https://img.shields.io/badge/AppVersion-1.1.2-informational?style=flat-square) +![Version: 0.0.15](https://img.shields.io/badge/Version-0.0.15-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.2](https://img.shields.io/badge/AppVersion-1.1.2-informational?style=flat-square) A Helm Chart to template crossplane manifests to manage BTP resources such as Directory, TrustConfiguration and RoleCollection Assignment on BTP. From c635e32b1fbc937a45e26fd324869e18396a1d9f Mon Sep 17 00:00:00 2001 From: Steffen <5519671+sk31337@users.noreply.github.com> Date: Wed, 22 Oct 2025 15:22:08 +0200 Subject: [PATCH 04/12] chore Updated comments to indicate optional fields in values.yaml. --- helm/charts/crossplane-provider-btp-security/values.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/helm/charts/crossplane-provider-btp-security/values.yaml b/helm/charts/crossplane-provider-btp-security/values.yaml index 9a9c552..0f25b85 100644 --- a/helm/charts/crossplane-provider-btp-security/values.yaml +++ b/helm/charts/crossplane-provider-btp-security/values.yaml @@ -23,8 +23,10 @@ roleCollectionAssignments: name: "" # -- [forProvider](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) CRD forProvider: [] - # -- [apiCredentials](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) CRD + # -- optional [apiCredentials](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) CRD apiCredentials: [] + # -- optional [subaccountApiCredentialRef](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) CRD + subaccountApiCredentialRef: [] # -- optional writeConnectionSecretToRef: [] ######################################################################################################################## From 2a68b84190d45d817d300a5323746b49ef74149b Mon Sep 17 00:00:00 2001 From: Steffen <5519671+sk31337@users.noreply.github.com> Date: Wed, 22 Oct 2025 15:22:32 +0200 Subject: [PATCH 05/12] Add subaccountApiCredentialRef to values.ci.yaml --- helm/charts/crossplane-provider-btp-security/values.ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/helm/charts/crossplane-provider-btp-security/values.ci.yaml b/helm/charts/crossplane-provider-btp-security/values.ci.yaml index 02c5f06..0d4816e 100644 --- a/helm/charts/crossplane-provider-btp-security/values.ci.yaml +++ b/helm/charts/crossplane-provider-btp-security/values.ci.yaml @@ -37,6 +37,8 @@ roleCollectionAssignments: origin: "origin" roleCollectionName: "roleCollectionName" userName: "userName" + subaccountApiCredentialRef: + name: "name" apiCredentials: env: name: "name" @@ -62,4 +64,4 @@ globalaccountTrustConfigurations: writeConnectionSecretToRef: name: "name" namespace: "namespace" -######################################################################################################################## \ No newline at end of file +######################################################################################################################## From ea23f1976a8c7f9a31fdde7cd5c7c76a0b4bdccb Mon Sep 17 00:00:00 2001 From: sk31337 Date: Wed, 22 Oct 2025 13:23:01 +0000 Subject: [PATCH 06/12] chore(ci): update Helm Chart helm/charts/crossplane-provider-btp-security/README.md file --- helm/charts/crossplane-provider-btp-security/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/helm/charts/crossplane-provider-btp-security/README.md b/helm/charts/crossplane-provider-btp-security/README.md index 9ba7f70..a331234 100644 --- a/helm/charts/crossplane-provider-btp-security/README.md +++ b/helm/charts/crossplane-provider-btp-security/README.md @@ -23,10 +23,11 @@ A Helm Chart to template crossplane manifests to manage BTP resources such as Di | globalaccountTrustConfigurations[0].name | string | - | Name of the GlobalaccountTrustConfiguration resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/GlobalaccountTrustConfiguration/v1alpha1@v1.1.2?path=metadata). | | globalaccountTrustConfigurations[0].writeConnectionSecretToRef | list | `[]` | optional | | roleCollectionAssignments | list | object | `roleCollectionAssignments[].` orchestrate [`kind: RoleCollectionAssignment`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). | -| roleCollectionAssignments[0] | object | `{"apiCredentials":[],"btpSapCrossplaneProviderConfigRefName":"","forProvider":[],"name":"","writeConnectionSecretToRef":[]}` | btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! | -| roleCollectionAssignments[0].apiCredentials | list | `[]` | [apiCredentials](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) CRD | +| roleCollectionAssignments[0] | object | `{"apiCredentials":[],"btpSapCrossplaneProviderConfigRefName":"","forProvider":[],"name":"","subaccountApiCredentialRef":[],"writeConnectionSecretToRef":[]}` | btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! | +| roleCollectionAssignments[0].apiCredentials | list | `[]` | optional [apiCredentials](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) CRD | | roleCollectionAssignments[0].forProvider | list | `[]` | [forProvider](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) CRD | | roleCollectionAssignments[0].name | string | - | Name of the RoleCollectionAssignment resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2?path=metadata). | +| roleCollectionAssignments[0].subaccountApiCredentialRef | list | `[]` | optional [subaccountApiCredentialRef](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) CRD | | roleCollectionAssignments[0].writeConnectionSecretToRef | list | `[]` | optional | | subaccountTrustConfigurations | list | object | `subaccountTrustConfigurations[].` orchestrate [`kind: SubaccountTrustConfiguration`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountTrustConfiguration/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). | | subaccountTrustConfigurations[0] | object | `{"btpSapCrossplaneProviderConfigRefName":"","forProvider":[],"name":"","writeConnectionSecretToRef":[]}` | btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! | From 45b4c65ae8821507a8a086e03c1145908869711c Mon Sep 17 00:00:00 2001 From: Steffen <5519671+sk31337@users.noreply.github.com> Date: Wed, 22 Oct 2025 15:24:22 +0200 Subject: [PATCH 07/12] Add subaccount API credential template --- .../templates/subaccount-api-credential.yaml | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 helm/charts/crossplane-provider-btp-security/templates/subaccount-api-credential.yaml diff --git a/helm/charts/crossplane-provider-btp-security/templates/subaccount-api-credential.yaml b/helm/charts/crossplane-provider-btp-security/templates/subaccount-api-credential.yaml new file mode 100644 index 0000000..02c6c00 --- /dev/null +++ b/helm/charts/crossplane-provider-btp-security/templates/subaccount-api-credential.yaml @@ -0,0 +1,21 @@ +{{- range $item := .Values.subaccountApiCredentials }} + {{- if and ($item) (ne $item.name "") }} +--- +apiVersion: security.btp.sap.crossplane.io/v1alpha1 +kind: SubaccountApiCredential +metadata: + name: {{required "A valid value is required! (.Values.subaccountApiCredentials[].name)" $item.name | lower }} + labels: + openmcp.cloud/blueprint-building-block: "{{ $.Chart.Name }}" + openmcp.cloud/blueprint-building-block-version: "{{ $.Chart.Version }}" +spec: + providerConfigRef: + name: {{ required "A valid value is required! (.Values.subaccountApiCredentials[].btpSapCrossplaneProviderConfigRefName)" $item.btpSapCrossplaneProviderConfigRefName | lower }} + forProvider: + {{- required "A valid value is required! (.Values.subaccountApiCredentials[].forProvider)" $item.forProvider | toYaml | nindent 4 }} + {{- if $item.writeConnectionSecretToRef}} + writeConnectionSecretToRef: + {{- $item.writeConnectionSecretToRef | toYaml | nindent 4 }} + {{- end }} + {{- end }} +{{- end }} From dd35eec28a1701655cd7db546a021e507480867d Mon Sep 17 00:00:00 2001 From: Steffen <5519671+sk31337@users.noreply.github.com> Date: Wed, 22 Oct 2025 15:25:46 +0200 Subject: [PATCH 08/12] Add subaccountApiCredentials to values.yaml Add subaccountApiCredentials configuration options with references to documentation. --- .../crossplane-provider-btp-security/values.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/helm/charts/crossplane-provider-btp-security/values.yaml b/helm/charts/crossplane-provider-btp-security/values.yaml index 0f25b85..6c1d372 100644 --- a/helm/charts/crossplane-provider-btp-security/values.yaml +++ b/helm/charts/crossplane-provider-btp-security/values.yaml @@ -43,3 +43,16 @@ globalaccountTrustConfigurations: # -- optional writeConnectionSecretToRef: [] ######################################################################################################################## +# -- `subaccountApiCredentials[].` orchestrate [`kind: SubaccountApiCredential`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). +# @default -- object +subaccountApiCredentials: + # -- btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! + - btpSapCrossplaneProviderConfigRefName: "" + # globalaccountTrustConfigurations[0].name -- Name of the GlobalaccountTrustConfiguration resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2?path=metadata). + # @default -- - + name: "" + # -- [forProvider](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2) CRD + forProvider: [] + # -- optional + writeConnectionSecretToRef: [] +######################################################################################################################## From 7e6735ef9150e72ff1ed951a6d5685b0c2169ad2 Mon Sep 17 00:00:00 2001 From: sk31337 Date: Wed, 22 Oct 2025 13:26:15 +0000 Subject: [PATCH 09/12] chore(ci): update Helm Chart helm/charts/crossplane-provider-btp-security/README.md file --- helm/charts/crossplane-provider-btp-security/README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/helm/charts/crossplane-provider-btp-security/README.md b/helm/charts/crossplane-provider-btp-security/README.md index a331234..dead221 100644 --- a/helm/charts/crossplane-provider-btp-security/README.md +++ b/helm/charts/crossplane-provider-btp-security/README.md @@ -20,7 +20,7 @@ A Helm Chart to template crossplane manifests to manage BTP resources such as Di | globalaccountTrustConfigurations | list | object | `globalaccountTrustConfigurations[].` orchestrate [`kind: GlobalaccountTrustConfiguration`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/GlobalaccountTrustConfiguration/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). | | globalaccountTrustConfigurations[0] | object | `{"btpSapCrossplaneProviderConfigRefName":"","forProvider":[],"name":"","writeConnectionSecretToRef":[]}` | btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! | | globalaccountTrustConfigurations[0].forProvider | list | `[]` | [forProvider](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/GlobalaccountTrustConfiguration/v1alpha1@v1.1.2) CRD | -| globalaccountTrustConfigurations[0].name | string | - | Name of the GlobalaccountTrustConfiguration resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/GlobalaccountTrustConfiguration/v1alpha1@v1.1.2?path=metadata). | +| globalaccountTrustConfigurations[0].name | string | - | Name of the GlobalaccountTrustConfiguration resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2?path=metadata). | | globalaccountTrustConfigurations[0].writeConnectionSecretToRef | list | `[]` | optional | | roleCollectionAssignments | list | object | `roleCollectionAssignments[].` orchestrate [`kind: RoleCollectionAssignment`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). | | roleCollectionAssignments[0] | object | `{"apiCredentials":[],"btpSapCrossplaneProviderConfigRefName":"","forProvider":[],"name":"","subaccountApiCredentialRef":[],"writeConnectionSecretToRef":[]}` | btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! | @@ -29,6 +29,10 @@ A Helm Chart to template crossplane manifests to manage BTP resources such as Di | roleCollectionAssignments[0].name | string | - | Name of the RoleCollectionAssignment resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2?path=metadata). | | roleCollectionAssignments[0].subaccountApiCredentialRef | list | `[]` | optional [subaccountApiCredentialRef](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) CRD | | roleCollectionAssignments[0].writeConnectionSecretToRef | list | `[]` | optional | +| subaccountApiCredentials | list | object | `subaccountApiCredentials[].` orchestrate [`kind: SubaccountApiCredential`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). | +| subaccountApiCredentials[0] | object | `{"btpSapCrossplaneProviderConfigRefName":"","forProvider":[],"name":"","writeConnectionSecretToRef":[]}` | btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! | +| subaccountApiCredentials[0].forProvider | list | `[]` | [forProvider](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2) CRD | +| subaccountApiCredentials[0].writeConnectionSecretToRef | list | `[]` | optional | | subaccountTrustConfigurations | list | object | `subaccountTrustConfigurations[].` orchestrate [`kind: SubaccountTrustConfiguration`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountTrustConfiguration/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). | | subaccountTrustConfigurations[0] | object | `{"btpSapCrossplaneProviderConfigRefName":"","forProvider":[],"name":"","writeConnectionSecretToRef":[]}` | btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! | | subaccountTrustConfigurations[0].forProvider | list | `[]` | [forProvider](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountTrustConfiguration/v1alpha1@v1.1.2) CRD | From efba7d3131f0876028b6be730de1f53a1036d455 Mon Sep 17 00:00:00 2001 From: Steffen <5519671+sk31337@users.noreply.github.com> Date: Wed, 22 Oct 2025 15:26:34 +0200 Subject: [PATCH 10/12] Add subaccount API credentials configuration --- .../crossplane-provider-btp-security/values.ci.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/helm/charts/crossplane-provider-btp-security/values.ci.yaml b/helm/charts/crossplane-provider-btp-security/values.ci.yaml index 0d4816e..9fa55f7 100644 --- a/helm/charts/crossplane-provider-btp-security/values.ci.yaml +++ b/helm/charts/crossplane-provider-btp-security/values.ci.yaml @@ -65,3 +65,13 @@ globalaccountTrustConfigurations: name: "name" namespace: "namespace" ######################################################################################################################## +subaccountApiCredentials: + - name: "poc-mcp-btp-kyma" + btpSapCrossplaneProviderConfigRefName: "btpSapCrossplaneProviderConfigRefName" + forProvider: + subaccountRef: + name: poc-mcp-btp-kyma + writeConnectionSecretToRef: + name: xsuaa-creds-my-subaccount + namespace: default +######################################################################################################################## From 208113c0e04614b97258162e62a2544ca44d5047 Mon Sep 17 00:00:00 2001 From: Steffen <5519671+sk31337@users.noreply.github.com> Date: Wed, 22 Oct 2025 15:35:22 +0200 Subject: [PATCH 11/12] Update SubaccountApiCredential version in values.yaml --- helm/charts/crossplane-provider-btp-security/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helm/charts/crossplane-provider-btp-security/values.yaml b/helm/charts/crossplane-provider-btp-security/values.yaml index 6c1d372..0855312 100644 --- a/helm/charts/crossplane-provider-btp-security/values.yaml +++ b/helm/charts/crossplane-provider-btp-security/values.yaml @@ -43,15 +43,15 @@ globalaccountTrustConfigurations: # -- optional writeConnectionSecretToRef: [] ######################################################################################################################## -# -- `subaccountApiCredentials[].` orchestrate [`kind: SubaccountApiCredential`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). +# -- `subaccountApiCredentials[].` orchestrate [`kind: SubaccountApiCredential`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.3.0) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). # @default -- object subaccountApiCredentials: # -- btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! - btpSapCrossplaneProviderConfigRefName: "" - # globalaccountTrustConfigurations[0].name -- Name of the GlobalaccountTrustConfiguration resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2?path=metadata). + # subaccountApiCredentials[0].name -- Name of the GlobalaccountTrustConfiguration resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.3.0). # @default -- - name: "" - # -- [forProvider](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2) CRD + # -- [forProvider](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.3.0) CRD forProvider: [] # -- optional writeConnectionSecretToRef: [] From 9cefeb53f5c3a1236393976aa67f95093d6d6899 Mon Sep 17 00:00:00 2001 From: sk31337 Date: Wed, 22 Oct 2025 13:35:48 +0000 Subject: [PATCH 12/12] chore(ci): update Helm Chart helm/charts/crossplane-provider-btp-security/README.md file --- helm/charts/crossplane-provider-btp-security/README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/helm/charts/crossplane-provider-btp-security/README.md b/helm/charts/crossplane-provider-btp-security/README.md index dead221..eb3c171 100644 --- a/helm/charts/crossplane-provider-btp-security/README.md +++ b/helm/charts/crossplane-provider-btp-security/README.md @@ -20,7 +20,7 @@ A Helm Chart to template crossplane manifests to manage BTP resources such as Di | globalaccountTrustConfigurations | list | object | `globalaccountTrustConfigurations[].` orchestrate [`kind: GlobalaccountTrustConfiguration`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/GlobalaccountTrustConfiguration/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). | | globalaccountTrustConfigurations[0] | object | `{"btpSapCrossplaneProviderConfigRefName":"","forProvider":[],"name":"","writeConnectionSecretToRef":[]}` | btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! | | globalaccountTrustConfigurations[0].forProvider | list | `[]` | [forProvider](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/GlobalaccountTrustConfiguration/v1alpha1@v1.1.2) CRD | -| globalaccountTrustConfigurations[0].name | string | - | Name of the GlobalaccountTrustConfiguration resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2?path=metadata). | +| globalaccountTrustConfigurations[0].name | string | - | Name of the GlobalaccountTrustConfiguration resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/GlobalaccountTrustConfiguration/v1alpha1@v1.1.2?path=metadata). | | globalaccountTrustConfigurations[0].writeConnectionSecretToRef | list | `[]` | optional | | roleCollectionAssignments | list | object | `roleCollectionAssignments[].` orchestrate [`kind: RoleCollectionAssignment`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). | | roleCollectionAssignments[0] | object | `{"apiCredentials":[],"btpSapCrossplaneProviderConfigRefName":"","forProvider":[],"name":"","subaccountApiCredentialRef":[],"writeConnectionSecretToRef":[]}` | btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! | @@ -29,9 +29,10 @@ A Helm Chart to template crossplane manifests to manage BTP resources such as Di | roleCollectionAssignments[0].name | string | - | Name of the RoleCollectionAssignment resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2?path=metadata). | | roleCollectionAssignments[0].subaccountApiCredentialRef | list | `[]` | optional [subaccountApiCredentialRef](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/RoleCollectionAssignment/v1alpha1@v1.1.2) CRD | | roleCollectionAssignments[0].writeConnectionSecretToRef | list | `[]` | optional | -| subaccountApiCredentials | list | object | `subaccountApiCredentials[].` orchestrate [`kind: SubaccountApiCredential`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). | +| subaccountApiCredentials | list | object | `subaccountApiCredentials[].` orchestrate [`kind: SubaccountApiCredential`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.3.0) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). | | subaccountApiCredentials[0] | object | `{"btpSapCrossplaneProviderConfigRefName":"","forProvider":[],"name":"","writeConnectionSecretToRef":[]}` | btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! | -| subaccountApiCredentials[0].forProvider | list | `[]` | [forProvider](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.1.2) CRD | +| subaccountApiCredentials[0].forProvider | list | `[]` | [forProvider](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.3.0) CRD | +| subaccountApiCredentials[0].name | string | - | Name of the GlobalaccountTrustConfiguration resource - [CRD Browser](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountApiCredential/v1alpha1@v1.3.0). | | subaccountApiCredentials[0].writeConnectionSecretToRef | list | `[]` | optional | | subaccountTrustConfigurations | list | object | `subaccountTrustConfigurations[].` orchestrate [`kind: SubaccountTrustConfiguration`](https://doc.crds.dev/github.com/SAP/crossplane-provider-btp/security.btp.sap.crossplane.io/SubaccountTrustConfiguration/v1alpha1@v1.1.2) of [BTP Accounts](https://help.sap.com/docs/btp/sap-business-technology-platform/account-model). | | subaccountTrustConfigurations[0] | object | `{"btpSapCrossplaneProviderConfigRefName":"","forProvider":[],"name":"","writeConnectionSecretToRef":[]}` | btpSapCrossplaneProviderConfigRefName defines crossplane provider configuration reference name (identifier) of a [BTP Global Account](https://help.sap.com/docs/btp/sap-business-technology-platform/getting-global-account)! |