diff --git a/docs/content/tutorials/composite-recipe/snippets/types.yaml b/docs/content/tutorials/composite-recipe/snippets/types.yaml index d67295fd5..073b5e6ba 100644 --- a/docs/content/tutorials/composite-recipe/snippets/types.yaml +++ b/docs/content/tutorials/composite-recipe/snippets/types.yaml @@ -1,4 +1,4 @@ -name: Radius.Resources +namespace: Radius.Resources types: postgreSQL: capabilities: ["SupportsRecipes"] diff --git a/docs/content/tutorials/custom-resource-type/index.md b/docs/content/tutorials/custom-resource-type/index.md index cbdf5d26f..8a58574e9 100644 --- a/docs/content/tutorials/custom-resource-type/index.md +++ b/docs/content/tutorials/custom-resource-type/index.md @@ -37,7 +37,7 @@ To create a PostgreSQL resource type in Radius, first create the resource type d The PostgreSQL resource type definition includes: - - **`name`**: The namespace of the resource type, as a convention `Radius.Resources` is recommended but any name in the form `PrimaryName.SecondaryName` can be used + - **`namespace`**: The namespace of the resource type, as a convention `Radius.Resources` is recommended but any name in the form `PrimaryName.SecondaryName` can be used - **`types`**: The resource type name - **`capabilities`**: This specifies features of the resource type. The only available option is `SupportsRecipes` which indicates that the resource type can be deployed via a Recipe. - **`apiVersions`**: The version of the schema defined below diff --git a/docs/content/tutorials/custom-resource-type/snippets/types.yaml b/docs/content/tutorials/custom-resource-type/snippets/types.yaml index 8ea0872d7..5a2ae7c96 100644 --- a/docs/content/tutorials/custom-resource-type/snippets/types.yaml +++ b/docs/content/tutorials/custom-resource-type/snippets/types.yaml @@ -1,4 +1,4 @@ -name: Radius.Resources +namespace: Radius.Resources types: postgreSQL: capabilities: ["SupportsRecipes"]