AWS code-library documentation change
Summary
Added PowerShell V5 example for retrieving OpenID Connect provider configuration details
Security assessment
Documents security-related identity federation features but doesn't address vulnerabilities. The example shows normal operational use of OIDC provider inspection capabilities.
Diff
diff --git a/code-library/latest/ug/iam_example_iam_GetOpenIdConnectProvider_section.md b/code-library/latest/ug/iam_example_iam_GetOpenIdConnectProvider_section.md index b2a53196f..539d9413b 100644 --- a//code-library/latest/ug/iam_example_iam_GetOpenIdConnectProvider_section.md +++ b//code-library/latest/ug/iam_example_iam_GetOpenIdConnectProvider_section.md @@ -70,0 +71,21 @@ PowerShell +**Tools for PowerShell V5** + + +**Example 1: This example returns details about the OpenID Connect provider whose ARN is`arn:aws:iam::123456789012:oidc-provider/accounts.google.com`. The `ClientIDList` property is a collection that contains all the Client IDs defined for this provider.** + + + Get-IAMOpenIDConnectProvider -OpenIDConnectProviderArn arn:aws:iam::123456789012:oidc-provider/oidc.example.com + + +**Output:** + + + ClientIDList CreateDate ThumbprintList Url + ------------ ---------- -------------- --- + {MyOIDCApp} 2/3/2015 3:00:30 PM {12345abcdefghijk67890lmnopqrst98765uvwxy} oidc.example.com + + * For API details, see [GetOpenIdConnectProvider](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. + + + +