diff --git a/website/docs/r/container_app.html.markdown b/website/docs/r/container_app.html.markdown
index 8317d8827f95..fc522c623f16 100644
--- a/website/docs/r/container_app.html.markdown
+++ b/website/docs/r/container_app.html.markdown
@@ -67,6 +67,8 @@ The following arguments are supported:
* `dapr` - (Optional) A `dapr` block as detailed below.
+* `identity` - (Optional) An `identity` block as detailed below.
+
* `ingress` - (Optional) An `ingress` block as detailed below.
* `registry` - (Optional) A `registry` block as detailed below.
@@ -121,7 +123,7 @@ A `container` block supports the following:
~> **NOTE:** `cpu` and `memory` must be specified in `0.25'/'0.5Gi` combination increments. e.g. `1.0` / `2.0` or `0.5` / `1.0`
-* `env` - (Optional) An `env` block as detailed below.
+* `env` - (Optional) One or more `env` blocks as detailed below.
* `ephemeral_storage` - The amount of ephemeral storage available to the Container App.
@@ -257,6 +259,14 @@ A `volume_mounts` block supports the following:
---
+An `identity` block supports the following:
+
+* `type` - (Required) The type of managed identity to assign. Possible values are `UserAssigned` and `SystemAssigned`
+
+* `identity_ids` - (Optional) - A list of one or more Resource IDs for User Assigned Managed identities to assign. Required when `type` is set to `UserAssigned`.
+
+---
+
An `ingress` block supports the following:
* `allow_insecure_connections` - (Optional) Should this ingress allow insecure connections?
diff --git a/website/docs/r/container_app_environment_dapr_component.html.markdown b/website/docs/r/container_app_environment_dapr_component.html.markdown
index db08d3b7a1be..22b06a77ec19 100644
--- a/website/docs/r/container_app_environment_dapr_component.html.markdown
+++ b/website/docs/r/container_app_environment_dapr_component.html.markdown
@@ -59,7 +59,7 @@ The following arguments are supported:
* `init_timeout` - The timeout for component initialisation as a `ISO8601` formatted string. e.g. `5s`, `2h`, `1m`. Defaults to `5s`
-* `metadata` - (Optional) A `metadata` block as detailed below.
+* `metadata` - (Optional) One or more `metadata` blocks as detailed below.
* `scopes` - (Optional) A list of scopes to which this component applies.