Skip to content

Commit

Permalink
Updating docs
Browse files Browse the repository at this point in the history
  • Loading branch information
avnerenv0 committed Jun 7, 2021
1 parent 35b6715 commit cb9aa88
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/data-sources/project.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ data "env0_project" "default_project" {

### Optional

- **description** (String) textual description of the project
- **id** (String) id of the project
- **name** (String) the name of the project

### Read-Only

- **created_by** (String) textual description of the entity who created the project
- **description** (String) textual description of the project
- **role** (String) role of the authenticated user (through api key) in the project


1 change: 0 additions & 1 deletion docs/data-sources/template.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ data "env0_template" "example" {
- **retry_on_deploy_only_when_matches_regex** (String) if specified, will only retry (on deploy) if error matches specified regex
- **retry_on_destroy_only_when_matches_regex** (String) if specified, will only retry (on destroy) if error matches specified regex
- **revision** (String) source code revision (branch / tag) to use
- **ssh_keys** (List of Map of String) which ssh keys are used for accessing git over ssh
- **terraform_version** (String) terraform version to use
- **type** (String) 'terraform' or 'terragrunt'

Expand Down
2 changes: 1 addition & 1 deletion docs/resources/cloud_credentials_project_assignment.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ data "env0_project" "project" {
}
resource "env0_cloud_credentials_project_assignment" "example" {
credential_id = data.env0_aws_credentials.credentials.id
credential_id = env0_aws_credentials.credentials.id
project_id = data.env0_project.project.id
}
```
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/ssh_key.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resource "env0_ssh_key" "tested" {
### Required

- **name** (String) name to give the ssh key
- **value** (String) value is a private key in PEM format (first line usually looks like -----BEGIN OPENSSH PRIVATE KEY-----)
- **value** (String, Sensitive) value is a private key in PEM format (first line usually looks like -----BEGIN OPENSSH PRIVATE KEY-----)

### Optional

Expand Down

0 comments on commit cb9aa88

Please sign in to comment.