confluent iam pool create

Description

Create an identity pool.

confluent iam pool create <name> [flags]

Flags

    --provider string         REQUIRED: ID of this pool's identity provider.
    --identity-claim string   REQUIRED: Claim specifying the external identity using this identity pool.
    --description string      Description of the identity pool.
    --filter string           A supported Common Expression Language (CEL) filter expression for group mappings. (default "true")
    --context string          CLI context name.
-o, --output string           Specify the output format as "human", "json", or "yaml". (default "human")

Global Flags

-h, --help            Show help for this command.
    --unsafe-trace    Equivalent to -vvvv, but also log HTTP requests and responses which might contain plaintext secrets.
-v, --verbose count   Increase verbosity (-v for warn, -vv for info, -vvv for debug, -vvvv for trace).

Examples

Create an identity pool named “demo-identity-pool” with identity provider “op-12345”:

confluent iam pool create demo-identity-pool --provider op-12345 --description "new description" --identity-claim claims.sub --filter 'claims.iss=="https://my.issuer.com"'

See Also