AWS code-library documentation change
Summary
Added PowerShell V5 example for OIDC provider creation
Security assessment
Documents authentication security feature (OIDC integration) but doesn't address any specific vulnerability.
Diff
diff --git a/code-library/latest/ug/iam_example_iam_CreateOpenIdConnectProvider_section.md b/code-library/latest/ug/iam_example_iam_CreateOpenIdConnectProvider_section.md index f910a5dba..de11dea5c 100644 --- a//code-library/latest/ug/iam_example_iam_CreateOpenIdConnectProvider_section.md +++ b//code-library/latest/ug/iam_example_iam_CreateOpenIdConnectProvider_section.md @@ -85,0 +86,19 @@ PowerShell +**Tools for PowerShell V5** + + +**Example 1: This example creates an IAM OIDC provider associated with the OIDC compatible provider service found at the URL`https://example.oidcprovider.com` and the client ID `my-testapp-1`. The OIDC provider supplies the thumbprint. To authenticate the thumbprint, follow the steps at http://docs.aws.amazon.com/IAM/latest/UserGuide/identity-providers-oidc-obtain-thumbprint.html.** + + + New-IAMOpenIDConnectProvider -Url https://example.oidcprovider.com -ClientIDList my-testapp-1 -ThumbprintList 990F419EXAMPLEECF12DDEDA5EXAMPLE52F20D9E + + +**Output:** + + + arn:aws:iam::123456789012:oidc-provider/example.oidcprovider.com + + * For API details, see [CreateOpenIdConnectProvider](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. + + + +