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

Fixed whitespace and markdown consistency in reference docs #978

Merged
merged 8 commits into from
Nov 27, 2023
1 change: 0 additions & 1 deletion docs/content/reference/api/resource-policies/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ Each resource type controller decides whether it will retry to process the opera
| Applications.Dapr/stateStores | LIST/GET/PUT/PATCH/DELETE | Synchronous | default | |
| Applications.Dapr/stateStores | POST ListSecret | Synchronous | default | |


#### Applications.Datastores resource providers

| Resource Type | Operation | API Type | Server Timeout (Seconds) | Async Operation retry condition|
Expand Down
4 changes: 1 addition & 3 deletions docs/content/reference/limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ See [app name constraints]({{< ref "resource-schema.md#common-values" >}}) for m
### Application and resource names are lower-cased after deployment

After deploying an application with application name `AppNAME` and container name `CONTAINERname`, casing information about the casing is lost, resulting in names to be lower-cased. The result is:

```bash
rad application list
RESOURCE TYPE
Expand Down Expand Up @@ -118,5 +118,3 @@ Some of the [AWS resource types](/resource-schema/aws) are 'non-idempotent', thi
We are currently building support for non-idempotent resources in Radius. Please like and comment on this [this issue](https://github.com/radius-project/radius/issues/6227) if you are interested in the same.

As a workaround, you can try using [Terraform Recipes]({{< ref "/guides/recipes/overview" >}}) to deploy and manage those non-idempotent resource types.


2 changes: 1 addition & 1 deletion docs/content/reference/resource-schema/aws/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description: "Learn about the supported AWS resource types in Radius"
categories: "Schema"
---

Radius supports AWS resource types that are supported by the [AWS Cloud Control API](https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/what-is-cloudcontrolapi.html)
Radius supports AWS resource types that are supported by the [AWS Cloud Control API](https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/what-is-cloudcontrolapi.html).

Following table lists the resource types that are currently supported and the limitations for each of the resource types.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,3 @@ resource publisher 'Applications.Core/containers@2023-10-01-preview' = {
}
}
}



Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ resource gateway 'Applications.Core/gateways@2023-10-01-preview' = {
application: app.id
hostname: {
// Omitting hostname properties results in gatewayname.appname.PUBLIC_HOSTNAME_OR_IP.nip.io

// Results in prefix.appname.PUBLIC_HOSTNAME_OR_IP.nip.io
prefix: 'prefix'
// Alternately you can specify your own hostname that you've configured externally
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource myapp 'Applications.Core/containers@2023-10-01-preview' = {
]
}
}

//SAMPLE
resource statestore 'Applications.Dapr/stateStores@2023-10-01-preview' = {
name: 'statestore'
Expand All @@ -44,4 +44,3 @@ resource statestore 'Applications.Dapr/stateStores@2023-10-01-preview' = {
}
}
//SAMPLE

Loading