1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 06:47:12 +00:00

gcloud: Thu Jun 15 10:31:27 UTC 2023

This commit is contained in:
Automated 2023-06-15 10:31:27 +00:00
parent 435c9359b5
commit 2102dc5511
223 changed files with 8143 additions and 443 deletions

View file

@ -9,7 +9,8 @@ SYNOPSIS
--attribute-mapping=[ATTRIBUTE_MAPPING,...] --issuer-uri=ISSUER_URI
[--allowed-audiences=[ALLOWED_AUDIENCES,...]]
[--attribute-condition=ATTRIBUTE_CONDITION] [--description=DESCRIPTION]
[--disabled] [--display-name=DISPLAY_NAME] [GCLOUD_WIDE_FLAG ...]
[--disabled] [--display-name=DISPLAY_NAME]
[--jwk-json-path=JWK_JSON_PATH] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Create a new OIDC workload identity pool provider.
@ -28,7 +29,7 @@ EXAMPLES
--attribute-condition="true" \
--issuer-uri="https://test-idp.com" \
--allowed-audiences=https://test-audience-1.com,https://\
test-audience-2.com
test-audience-2.com --jwk-json-path="path/to/jwk.json"
POSITIONAL ARGUMENTS
Workload identity pool provider resource - The workload identity pool
@ -205,6 +206,25 @@ OPTIONAL FLAGS
--display-name=DISPLAY_NAME
A display name for the provider. Cannot exceed 32 characters.
--jwk-json-path=JWK_JSON_PATH
Optional file containing jwk public keys. The file format must follow
jwk specifications (https://www.rfc-editor.org/rfc/rfc7517#section-4).
Example file format: {
"keys": [
{
"kty": "RSA/EC",
"alg": "<algorithm>",
"use": "sig",
"kid": "<key-id>",
"n": "",
"e": ""
"x": ""
"y": ""
"crv": ""
}
]
}
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,

View file

@ -10,7 +10,8 @@ SYNOPSIS
[--attribute-condition=ATTRIBUTE_CONDITION]
[--attribute-mapping=[ATTRIBUTE_MAPPING,...]]
[--description=DESCRIPTION] [--disabled] [--display-name=DISPLAY_NAME]
[--issuer-uri=ISSUER_URI] [GCLOUD_WIDE_FLAG ...]
[--issuer-uri=ISSUER_URI] [--jwk-json-path=JWK_JSON_PATH]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Update an OIDC workload identity pool provider.
@ -29,7 +30,7 @@ EXAMPLES
--attribute-condition="true" \
--issuer-uri="https://test-idp.com" \
--allowed-audiences=https://test-audience-1.com,https://\
test-audience-2.com
test-audience-2.com --jwk-json-path="path/to/jwk.json"
POSITIONAL ARGUMENTS
Workload identity pool provider resource - The workload identity pool
@ -205,6 +206,25 @@ FLAGS
--issuer-uri=ISSUER_URI
The OIDC issuer URL.
--jwk-json-path=JWK_JSON_PATH
Optional file containing jwk public keys. The file format must follow
jwk specifications (https://www.rfc-editor.org/rfc/rfc7517#section-4).
Example file format: {
"keys": [
{
"kty": "RSA/EC",
"alg": "<algorithm>",
"use": "sig",
"kid": "<key-id>",
"n": "",
"e": ""
"x": ""
"y": ""
"crv": ""
}
]
}
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,