diff --git a/docs/documentation/platform/dynamic-secrets/cassandra.mdx b/docs/documentation/platform/dynamic-secrets/cassandra.mdx
new file mode 100644
index 0000000000..0289a6e6d6
--- /dev/null
+++ b/docs/documentation/platform/dynamic-secrets/cassandra.mdx
@@ -0,0 +1,127 @@
+---
+title: "Cassandra"
+description: "How to dynamically generate Cassandra database users"
+---
+
+The Infisical Cassandra dynamic secret allows you to generate Cassandra database credentials on demand based on configured role.
+
+## Prerequisite
+
+Infisical requires a Cassandra user in your instance with the necessary permissions. This user will facilitate the creation of new accounts as needed.
+Ensure the user possesses privileges for Creating, Dropping, and Granting permissions to roles.
+
+In your Cassandra configuration file cassandra.yaml, make sure you have the following settings:
+
+```yaml
+authenticator: PasswordAuthenticator
+authorizer: CassandraAuthorizer
+```
+
+The above configuration allows user creation and granting permissions.
+
+## Set up Dynamic Secrets with Cassandra
+
+
+
+ Open the Secret Overview dashboard and select the environment in which you would like to add a dynamic secret.
+
+
+ ![Add Dynamic Secret Button](../../../images/platform/dynamic-secrets/add-dynamic-secret-button.png)
+
+
+ ![Dynamic Secret Modal](../../../images/platform/dynamic-secrets/dynamic-secret-modal-cassandra.png)
+
+
+
+ Name by which you want the secret to be referenced
+
+
+
+ Default time-to-live for a generated secret (it is possible to modify this value when a secret is generate)
+
+
+
+ Maximum time-to-live for a generated secret
+
+
+
+ Cassandra Host. You can specify multiple Cassandra hosts by separating them with commas.
+
+
+
+ Cassandra port
+
+
+
+ Username that will be used to create dynamic secrets
+
+
+
+ Password that will be used to create dynamic secrets
+
+
+
+ Specify the local data center in Cassandra that you want to use. This choice should align with your Cassandra cluster setup.
+
+
+
+ Keyspace name where you want to create dynamic secrets. This ensures that the user is limited to that keyspace.
+
+
+
+ A CA may be required if your cassandra requires it for incoming connections.
+
+
+ ![Dynamic Secret Setup Modal](../../../images/platform/dynamic-secrets/dynamic-secret-setup-modal-cassandra.png)
+
+
+
+ If you want to provide specific privileges for the generated dynamic credentials, you can modify the CQL statement to your needs. This is useful if you want to only give access to a specific table(s).
+
+ ![Modify CQL Statements Modal](../../../images/platform/dynamic-secrets/modify-cql-statements.png)
+
+
+ After submitting the form, you will see a dynamic secret created in the dashboard.
+
+
+ If this step fails, you may have to add the CA certficate.
+
+
+ ![Dynamic Secret](../../../images/platform/dynamic-secrets/dynamic-secret.png)
+
+
+ Once you've successfully configured the dynamic secret, you're ready to generate on-demand credentials.
+ To do this, simply click on the 'Generate' button which appears when hovering over the dynamic secret item.
+ Alternatively, you can initiate the creation of a new lease by selecting 'New Lease' from the dynamic secret lease list section.
+
+ ![Dynamic Secret](/images/platform/dynamic-secrets/dynamic-secret-generate.png)
+ ![Dynamic Secret](/images/platform/dynamic-secrets/dynamic-secret-lease-empty.png)
+
+ When generating these secrets, it's important to specify a Time-to-Live (TTL) duration. This will dictate how long the credentials are valid for.
+
+ ![Provision Lease](/images/platform/dynamic-secrets/provision-lease.png)
+
+
+ Ensure that the TTL for the lease fall within the maximum TTL defined when configuring the dynamic secret.
+
+
+
+ Once you click the `Submit` button, a new secret lease will be generated and the credentials for it will be shown to you.
+
+ ![Provision Lease](/images/platform/dynamic-secrets/lease-values.png)
+
+
+
+## Audit or Revoke Leases
+Once you have created one or more leases, you will be able to access them by clicking on the respective dynamic secret item on the dashboard.
+This will allow you see the expiration time of the lease or delete the lease before it's set time to live.
+
+![Provision Lease](/images/platform/dynamic-secrets/lease-data.png)
+
+## Renew Leases
+To extend the life of the generated dynamic secret leases past its initial time to live, simply click on the **Renew** as illustrated below.
+![Provision Lease](/images/platform/dynamic-secrets/dynamic-secret-lease-renew.png)
+
+
+ Lease renewals cannot exceed the maximum TTL set when configuring the dynamic secret
+
diff --git a/docs/images/platform/dynamic-secrets/dynamic-secret-modal-cassandra.png b/docs/images/platform/dynamic-secrets/dynamic-secret-modal-cassandra.png
new file mode 100644
index 0000000000..6956c44e49
Binary files /dev/null and b/docs/images/platform/dynamic-secrets/dynamic-secret-modal-cassandra.png differ
diff --git a/docs/images/platform/dynamic-secrets/dynamic-secret-setup-modal-cassandra.png b/docs/images/platform/dynamic-secrets/dynamic-secret-setup-modal-cassandra.png
new file mode 100644
index 0000000000..b9ce04aef1
Binary files /dev/null and b/docs/images/platform/dynamic-secrets/dynamic-secret-setup-modal-cassandra.png differ
diff --git a/docs/images/platform/dynamic-secrets/modify-cql-statements.png b/docs/images/platform/dynamic-secrets/modify-cql-statements.png
new file mode 100644
index 0000000000..d1e1b9b98f
Binary files /dev/null and b/docs/images/platform/dynamic-secrets/modify-cql-statements.png differ
diff --git a/docs/mint.json b/docs/mint.json
index 94654ebe3f..b38b5fa522 100644
--- a/docs/mint.json
+++ b/docs/mint.json
@@ -32,7 +32,10 @@
"thumbsRating": true
},
"api": {
- "baseUrl": ["https://app.infisical.com", "http://localhost:8080"]
+ "baseUrl": [
+ "https://app.infisical.com",
+ "http://localhost:8080"
+ ]
},
"topbarLinks": [
{
@@ -142,7 +145,8 @@
"documentation/platform/dynamic-secrets/overview",
"documentation/platform/dynamic-secrets/postgresql",
"documentation/platform/dynamic-secrets/mysql",
- "documentation/platform/dynamic-secrets/oracle"
+ "documentation/platform/dynamic-secrets/oracle",
+ "documentation/platform/dynamic-secrets/cassandra"
]
},
"documentation/platform/groups"
@@ -370,11 +374,15 @@
},
{
"group": "Build Tool Integrations",
- "pages": ["integrations/build-tools/gradle"]
+ "pages": [
+ "integrations/build-tools/gradle"
+ ]
},
{
"group": "",
- "pages": ["sdks/overview"]
+ "pages": [
+ "sdks/overview"
+ ]
},
{
"group": "SDK's",
@@ -392,7 +400,9 @@
"api-reference/overview/authentication",
{
"group": "Examples",
- "pages": ["api-reference/overview/examples/integration"]
+ "pages": [
+ "api-reference/overview/examples/integration"
+ ]
}
]
},
@@ -521,11 +531,15 @@
},
{
"group": "Service Tokens",
- "pages": ["api-reference/endpoints/service-tokens/get"]
+ "pages": [
+ "api-reference/endpoints/service-tokens/get"
+ ]
},
{
"group": "Audit Logs",
- "pages": ["api-reference/endpoints/audit-logs/export-audit-log"]
+ "pages": [
+ "api-reference/endpoints/audit-logs/export-audit-log"
+ ]
}
]
},
@@ -541,7 +555,9 @@
},
{
"group": "",
- "pages": ["changelog/overview"]
+ "pages": [
+ "changelog/overview"
+ ]
},
{
"group": "Contributing",
@@ -565,7 +581,9 @@
},
{
"group": "Contributing to SDK",
- "pages": ["contributing/sdk/developing"]
+ "pages": [
+ "contributing/sdk/developing"
+ ]
}
]
}