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

Containerapps: Corrections and additions to docs #20411

Merged
merged 1 commit into from
Feb 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 11 additions & 1 deletion website/docs/r/container_app.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.

Expand Down Expand Up @@ -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?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down