From bd0d6b3cb5708fbb252a02263d545db047e8216c Mon Sep 17 00:00:00 2001 From: Guilherme Branco Date: Fri, 24 Mar 2023 09:20:25 -0300 Subject: [PATCH 1/2] feat: Favor oidc config id instead of private key secret --- model/clusters_mgmt/v1/sts_type.model | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/model/clusters_mgmt/v1/sts_type.model b/model/clusters_mgmt/v1/sts_type.model index 0eb2a635..97086737 100644 --- a/model/clusters_mgmt/v1/sts_type.model +++ b/model/clusters_mgmt/v1/sts_type.model @@ -47,9 +47,9 @@ struct STS { // Optional user provided permission boundary. PermissionBoundary String - // Secrets Manager ARN for the OIDC private key key. - OidcPrivateKeySecretArn String - // If true, cluster account and operator roles have managed policies attached. ManagedPolicies Boolean + + // Registered Oidc Config ID, if available holds information related to the oidc config + OidcConfigId String } From 262175fc5bcf997a6e7bd97ee9d40b1242f43d97 Mon Sep 17 00:00:00 2001 From: Guilherme Branco Date: Fri, 24 Mar 2023 09:22:11 -0300 Subject: [PATCH 2/2] chore: Release v0.0.267 --- CHANGES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index b32b8c02..d6b41e7a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,10 @@ This document describes the relevant changes between releases of the API model. +## 0.0.267 Mar 24 2023 +- Add `OidcConfigId` to `STS` resource. +- Remove `OidcPrivateKeySecretArn` from `STS` resource. + ## 0.0.266 Mar 17 2023 - Adjust `Oidc Configs` endpoints.