AWS code-library documentation change
Summary
Added PowerShell V5 example for listing OpenID Connect providers
Security assessment
Documents authentication provider management (OIDC), which is security-related, but no specific vulnerabilities are addressed. Enhances visibility of federated identity providers.
Diff
diff --git a/code-library/latest/ug/iam_example_iam_ListOpenIdConnectProviders_section.md b/code-library/latest/ug/iam_example_iam_ListOpenIdConnectProviders_section.md index 90e3cc22a..3f3554fbc 100644 --- a//code-library/latest/ug/iam_example_iam_ListOpenIdConnectProviders_section.md +++ b//code-library/latest/ug/iam_example_iam_ListOpenIdConnectProviders_section.md @@ -67,0 +68,22 @@ PowerShell +**Tools for PowerShell V5** + + +**Example 1: This example returns a list of ARNS of all the OpenID Connect providers that are defined in the current AWS account.** + + + Get-IAMOpenIDConnectProviderList + + +**Output:** + + + Arn + --- + arn:aws:iam::123456789012:oidc-provider/server.example.com + arn:aws:iam::123456789012:oidc-provider/another.provider.com + + * For API details, see [ListOpenIdConnectProviders](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. + + + +