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

Update auto-generated documentation #1348

Merged
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
1 change: 0 additions & 1 deletion docs/content/reference/cli/rad_application_graph.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ rad app graph my-application

```
-a, --application string The application name
-e, --environment string The environment name
-g, --group string The resource group name
-h, --help help for graph
-w, --workspace string The workspace name
Expand Down
7 changes: 5 additions & 2 deletions docs/content/reference/cli/rad_resource-provider_create.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Resource providers are the entities that implement resource types such as 'Appli

Creating a resource provider defines new resource types that can be used in applications.

Input can be passed in using a file or inline JSON as the second argument. Prefix the input with '@' to indicate a file path.
Input can be passed in using a JSON or YAML file using the --from-file option.


```
Expand All @@ -29,9 +29,12 @@ rad resource-provider create [input] [flags]

```

# Create a resource provider
# Create a resource provider from YAML file
rad resource-provider create --from-file /path/to/input.yaml

# Create a resource provider from JSON file
rad resource-provider create --from-file /path/to/input.json

```

### Options
Expand Down
Loading