Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
update generated docs action committed May 24, 2023
1 parent b670988 commit c9fbdfd
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 1 deletion.
27 changes: 27 additions & 0 deletions docs/data-sources/provider.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "env0_provider Data Source - terraform-provider-env0"
subcategory: ""
description: |-
---

# env0_provider (Data Source)





<!-- schema generated by tfplugindocs -->
## Schema

### Optional

- `id` (String) id of the provider
- `type` (String) the type/name of the provider

### Read-Only

- `description` (String) the description of the provider


2 changes: 1 addition & 1 deletion docs/resources/gpg_key.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,5 @@ Import is supported using the following syntax:

```shell
terraform import env0_gpg_key.by_id ddda7b30-6789-4d24-937c-22322754934e
terraform import env0_gpg_key.by_name gpg-key-name"
terraform import env0_gpg_key.by_name gpg-key-name
```
44 changes: 44 additions & 0 deletions docs/resources/provider.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "env0_provider Resource - terraform-provider-env0"
subcategory: ""
description: |-
---

# env0_provider (Resource)



## Example Usage

```terraform
resource "env0_provider" "example" {
type = "aws-key-example"
description = "description example"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `type` (String) type of the provider (Match pattern: ^[0-9a-zA-Z](?:[0-9a-zA-Z-]{0,30}[0-9a-zA-Z])?$). Your provider’s type is essentially it’s name, and should match your provider’s files. For example, if your binaries look like terraform-provider-aws_1.1.1_linux_amd64.zip, than your provider’s type should be aws.

### Optional

- `description` (String) description of the provider

### Read-Only

- `id` (String) The ID of this resource.

## Import

Import is supported using the following syntax:

```shell
terraform import env0_provider.by_id ddda7b30-6789-4d24-937c-22322754934e
terraform import env0_provider.by_type aws
```

0 comments on commit c9fbdfd

Please sign in to comment.