Skip to content

Commit

Permalink
feat: define OIDC issuer profile (#16834)
Browse files Browse the repository at this point in the history
* feat: define OIDC issuer profile

* fix: add `OIDC` to custom-wrods.txt

* doc: update description

* style: fix style check

* fix: add type
  • Loading branch information
bcho authored Nov 24, 2021
1 parent ad2d152 commit 259ea08
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1385,6 +1385,7 @@ offboard
offboards
officedocument
OLTP
OIDC
onboarded
Onboarding
Onboards
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3740,6 +3740,10 @@
"title": "The pod identity profile of the Managed Cluster.",
"description": "See [use AAD pod identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on AAD pod identity integration."
},
"oidcIssuerProfile": {
"$ref": "#/definitions/ManagedClusterOIDCIssuerProfile",
"description": "The OIDC issuer profile of the Managed Cluster."
},
"nodeResourceGroup": {
"type": "string",
"description": "The name of the resource group containing agent pool nodes."
Expand Down Expand Up @@ -4406,6 +4410,21 @@
"title": "The pod identity profile of the Managed Cluster.",
"description": "See [use AAD pod identity](https://docs.microsoft.com/azure/aks/use-azure-ad-pod-identity) for more details on pod identity integration."
},
"ManagedClusterOIDCIssuerProfile": {
"type": "object",
"properties": {
"issuerURL": {
"readOnly": true,
"type": "string",
"description": "The OIDC issuer url of the Managed Cluster."
},
"enabled": {
"type": "boolean",
"description": "Whether the OIDC issuer is enabled."
}
},
"description": "The OIDC issuer profile of the Managed Cluster."
},
"ManagedClusterUpgradeProfile": {
"properties": {
"id": {
Expand Down

0 comments on commit 259ea08

Please sign in to comment.