Skip to content
This repository has been archived by the owner on Mar 10, 2023. It is now read-only.

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
notchairmk committed Feb 7, 2021
1 parent 7c06688 commit c430d84
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
## Terraform Provider
## azureparse Terraform Provider

Terraform provider to list resources in an Azure resource group.
The azureparse provider can be used to list resources in an Azure resource group.

Some Azure services create additional resources which Terraform shouldn't manage, but can and should update. The azureparse provider creates a no-op shim resource to handle dependency tree operations, which outputs information about resources within that resource group.

A specific use case could be creating a network security rule on a network security group created by another Azure service (e.g. AKS).

## Example

```terraform
```hcl
resource "azureparse_resource_group" "example" {
resource_group_name = "some-resource-group-name"
}
Expand Down
8 changes: 5 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ description: |-

# azureparse Provider

The azureparse provider can be used to list resources in a resource group.
The azureparse provider can be used to list resources in an Azure resource group.

One use case: creating a network security rule on a network security group created by another Azure service (e.g. AKS).
Some Azure services create additional resources which Terraform shouldn't manage, but can and should update. The azureparse provider creates a no-op shim resource to handle dependency tree operations, which outputs information about resources within that resource group.

A specific use case could be creating a network security rule on a network security group created by another Azure service (e.g. AKS).

## Example Usage

Expand Down Expand Up @@ -46,4 +48,4 @@ resource "azurerm_route" "udr" {

* `subscription_id` - (Optional)

* `tenant_id` - (Optional)
* `tenant_id` - (Optional)

0 comments on commit c430d84

Please sign in to comment.