diff --git a/docs/content/reference/cli/rad_application_graph.md b/docs/content/reference/cli/rad_application_graph.md index d185366ba..433d02d2d 100644 --- a/docs/content/reference/cli/rad_application_graph.md +++ b/docs/content/reference/cli/rad_application_graph.md @@ -21,8 +21,8 @@ the command compiles the template and writes the resulting modeled graph to ./app-graph.json without contacting the control plane. If the command runs inside a GitHub Actions runner (GITHUB_ACTIONS=true), the -modeled graph is committed to /app-graph.json on the radius-graph -orphan branch instead of the local filesystem. This is auto-detected; no flag +modeled graph is saved to /app-graph.json in the radius-graph +archive instead of the local filesystem. This is auto-detected; no flag is required. ``` @@ -46,7 +46,7 @@ rad app graph ./app.bicep -a, --application string The application name -g, --group string The resource group name -h, --help help for graph - --include-icons When set with --preview, embeds each referenced resource type icon's SVG bytes in the response. + --include-icons When set with --preview (deployed) or with a bicep-file argument (modeled), embeds each referenced resource type icon's SVG bytes in the response's icons map. -o, --output string output format (supported formats are json, table) (default "table") --preview Use the Radius.Core preview implementation (can also be set via RADIUS_PREVIEW=true) -w, --workspace string The workspace name diff --git a/docs/content/reference/cli/rad_environment_update.md b/docs/content/reference/cli/rad_environment_update.md index 7c73ce58b..772bdcd30 100644 --- a/docs/content/reference/cli/rad_environment_update.md +++ b/docs/content/reference/cli/rad_environment_update.md @@ -67,7 +67,7 @@ rad env update myenv --recipe-packs pack1,pack2 -g, --group string The resource group name -h, --help help for update --kubernetes-namespace string The namespace where Kubernetes resources will be deployed - --preview Use the Radius.Core preview implementation for environment update. + --preview Use the Radius.Core preview implementation for environment update (can also be set via RADIUS_PREVIEW=true) --recipe-packs strings Specify recipe packs to replace the environment's recipe pack list (--preview). Accepts comma-separated values. -w, --workspace string The workspace name ``` diff --git a/docs/content/reference/cli/rad_shutdown.md b/docs/content/reference/cli/rad_shutdown.md index 3aa3905cb..f143c44f9 100644 --- a/docs/content/reference/cli/rad_shutdown.md +++ b/docs/content/reference/cli/rad_shutdown.md @@ -15,8 +15,8 @@ Back up Radius state and prepare for shutdown Back up all durable Radius state for the current workspace. Dumps the control-plane PostgreSQL databases and exports the Terraform recipe state Secrets, -commits them to the radius-state git orphan branch, and pushes to the remote when one is -configured. The state can be restored into a fresh control plane with 'rad startup'. +commits them to the radius-state archive. The state can be restored into a fresh control plane +with 'rad startup'. This command does not delete the cluster or uninstall Radius. diff --git a/docs/content/reference/cli/rad_startup.md b/docs/content/reference/cli/rad_startup.md index 46131f329..bb64d56b2 100644 --- a/docs/content/reference/cli/rad_startup.md +++ b/docs/content/reference/cli/rad_startup.md @@ -14,7 +14,7 @@ Restore Radius state after startup Restore durable Radius state for the current workspace. -Opens the radius-state git orphan branch, waits for the control-plane PostgreSQL instance to be +Opens the radius-state archive, waits for the control-plane PostgreSQL instance to be ready, restores the control-plane databases, and re-creates the Terraform recipe state Secrets. Run this after Radius is installed on a fresh cluster to resume from the state saved by 'rad shutdown'. diff --git a/docs/content/reference/resources/radius/radius.core/2025-08-01-preview/recipepacks/index.md b/docs/content/reference/resources/radius/radius.core/2025-08-01-preview/recipepacks/index.md index c32badd05..5536dc9c2 100644 --- a/docs/content/reference/resources/radius/radius.core/2025-08-01-preview/recipepacks/index.md +++ b/docs/content/reference/resources/radius/radius.core/2025-08-01-preview/recipepacks/index.md @@ -54,7 +54,7 @@ description: "Detailed reference documentation for radius.core/recipepacks@2025- | Property | Type | Description | |----------|------|-------------| | **kind** | 'bicep' | 'terraform' | The type of recipe (e.g., Terraform, Bicep)
_(Required)_ | -| **outputs** | [Record](#record) | Map of resource type property names to module output names. Used for recipes that point directly at a Bicep or Terraform module to map the module's outputs onto the resource's properties. | +| **outputs** | [Record](#record) | Maps the module's outputs onto the resource type's properties, for recipes that point directly at a Bicep or Terraform module. Each entry's value is either a string (the module output name for a non-secret property) or, under the reserved `secrets` key, a nested object mapping secret property names to module output names. A `secrets` entry always routes its module output to the resource's secret outputs regardless of how the module classified it (for example an AVM module's `primaryConnectionString`). Example: `{ host: 'name', secrets: { connectionString: 'primaryConnectionString' } }`. | | **parameters** | [Record](#record) | Parameters to pass to the recipe | | **plainHttp** | bool | Connect to the source using HTTP (not HTTPS). This should be used when the source is known not to support HTTPS, for example in a locally hosted registry for Bicep recipes. Defaults to false (use HTTPS/TLS) | | **source** | string | The source of the recipe. For Bicep recipes this is the OCI registry reference. For Terraform recipes this is the module source.
_(Required)_ | @@ -67,7 +67,7 @@ description: "Detailed reference documentation for radius.core/recipepacks@2025- #### Additional Properties -* **Additional Properties Type**: string +* **Additional Properties Type**: any ### Record