Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Cloud integration references to docs #228

Merged
merged 2 commits into from
Apr 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/getting-started/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ export const features = [
icon: '/img/icons/aws.png',
url: '/features/aws-iam/'
},
{
title: 'GCP IAM',
icon: '/img/icons/gcp.png',
url: '/features/gcp-iam/'
},
{
title: 'Azure IAM',
icon: '/img/icons/azure.png',
url: '/features/azure-iam/'
},
{
title: 'Kafka',
icon: '/img/icons/kafka-no-word-mark.svg',
Expand Down
21 changes: 21 additions & 0 deletions docs/reference/configuration/intents-operator/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,27 @@ This meant that if you had no network policies on a pod, and created ClientInten

This behavior can be disabled using the Helm chart's values.

### AWS IAM
The intents operator enables automatic management of AWS IAM roles and policies according to the
declared intents. It works together with the [Otterize credentials operator](/reference/configuration/credentials-operator) to easily enable secure access
to AWS cloud resources from client pods, all in your Kubernetes cluster.

Try the [AWS IAM tutorial](https://docs.otterize.com/quickstart/access-control/aws-iam-eks) to learn more.

### Azure IAM
The intents operator enables automatic management of Azure IAM identities and role assignments according to the
otterobert marked this conversation as resolved.
Show resolved Hide resolved
declared intents. It works together with the [Otterize credentials operator](/reference/configuration/credentials-operator) to easily enable secure access
to Azure cloud resources from client pods, all in your Kubernetes cluster.

Try the [Azure IAM tutorial](https://docs.otterize.com/features/azure-iam/tutorials/azure-iam-aks) to learn more.

### Google Cloud IAM
The intents operator enables automatic management of Google Cloud service accounts and policies according to the
declared intents. It works together with the [Otterize credentials operator](/reference/configuration/credentials-operator) to easily enable secure access
to Azure cloud resources from client pods, all in your Kubernetes cluster.

Try the [GCP IAM tutorial](https://docs.otterize.com/features/gcp-iam/tutorials/gcp-iam-gke) to learn more.

### Kafka mTLS & ACLs
The intents operator automatically creates, updates, and deletes ACLs in Kafka clusters running within your Kubernetes cluster according to the declared intents. It does not modify other ACLs. It works together with the [Otterize credentials operator](/reference/configuration/credentials-operator) to easily enable secure access to Kafka from client pods, all in your Kubernetes cluster.

Expand Down
Loading