Skip to content

Commit cb9aa88

Browse files
committed
Updating docs
1 parent 35b6715 commit cb9aa88

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

docs/data-sources/project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ data "env0_project" "default_project" {
2323

2424
### Optional
2525

26-
- **description** (String) textual description of the project
2726
- **id** (String) id of the project
2827
- **name** (String) the name of the project
2928

3029
### Read-Only
3130

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

3535

docs/data-sources/template.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ data "env0_template" "example" {
3737
- **retry_on_deploy_only_when_matches_regex** (String) if specified, will only retry (on deploy) if error matches specified regex
3838
- **retry_on_destroy_only_when_matches_regex** (String) if specified, will only retry (on destroy) if error matches specified regex
3939
- **revision** (String) source code revision (branch / tag) to use
40-
- **ssh_keys** (List of Map of String) which ssh keys are used for accessing git over ssh
4140
- **terraform_version** (String) terraform version to use
4241
- **type** (String) 'terraform' or 'terragrunt'
4342

docs/resources/cloud_credentials_project_assignment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ data "env0_project" "project" {
2424
}
2525
2626
resource "env0_cloud_credentials_project_assignment" "example" {
27-
credential_id = data.env0_aws_credentials.credentials.id
27+
credential_id = env0_aws_credentials.credentials.id
2828
project_id = data.env0_project.project.id
2929
}
3030
```

docs/resources/ssh_key.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ resource "env0_ssh_key" "tested" {
3333
### Required
3434

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

3838
### Optional
3939

0 commit comments

Comments
 (0)