<!-- WARNING: This documentation is auto-generated from the confluentinc/cli repository and should not be manually edited. -->

<a id="confluent-provider-integration-create"></a>

# confluent provider-integration create

## Description

Create a provider integration that allows users to manage access to public cloud service provider resources through Confluent resources.

```none
confluent provider-integration create <name> [flags]
```

## Flags

```none
    --customer-role-arn string   REQUIRED: Amazon Resource Name (ARN) that identifies the AWS Identity and Access Management (IAM) role that Confluent Cloud assumes when it accesses resources in your AWS account, and must be unique in the same environment.
    --cloud string               REQUIRED: Specify the cloud provider as "aws".
    --environment string         Environment ID.
    --context string             CLI context name.
-o, --output string              Specify the output format as "human", "json", or "yaml". (default "human")
```

## Global Flags

```none
-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 provider integration “s3-provider-integration” associated with AWS IAM role ARN “arn:aws:iam::000000000000:role/my-test-aws-role” in the current environment.

```none
confluent provider-integration create s3-provider-integration --cloud aws --customer-role-arn arn:aws:iam::000000000000:role/my-test-aws-role
```

Create provider integration “s3-provider-integration” associated with AWS IAM role ARN “arn:aws:iam::000000000000:role/my-test-aws-role” in environment “env-abcdef”.

```none
confluent provider-integration create s3-provider-integration --cloud aws --customer-role-arn arn:aws:iam::000000000000:role/my-test-aws-role --environment env-abcdef
```

## See Also

* [confluent provider-integration](index.md#confluent-provider-integration) - Manage Confluent Cloud provider integrations.
