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 8, 2023
1 parent ac7953b commit d8bba92
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
28 changes: 28 additions & 0 deletions docs/data-sources/gpg_key.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "env0_gpg_key Data Source - terraform-provider-env0"
subcategory: ""
description: |-
---

# env0_gpg_key (Data Source)





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

### Optional

- `id` (String) the id of the api key
- `name` (String) the name of the api key

### Read-Only

- `content` (String) the gpg public key block
- `key_id` (String) the gpg key id


43 changes: 43 additions & 0 deletions docs/resources/gpg_key.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "env0_gpg_key Resource - terraform-provider-env0"
subcategory: ""
description: |-
---

# env0_gpg_key (Resource)



## Example Usage

```terraform
resource "env0_gpg_key" "example" {
name = "gpg-key-example"
key_id = "ABCDABCDABCDABCD"
content = "key block"
}
```

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

### Required

- `content` (String) the gpg public key block
- `key_id` (String) the gpg key id
- `name` (String) the gpg key name

### Read-Only

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

## Import

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"
```

0 comments on commit d8bba92

Please sign in to comment.