File tree Expand file tree Collapse file tree 4 files changed +3
-4
lines changed Expand file tree Collapse file tree 4 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ data "env0_project" "default_project" {
23
23
24
24
### Optional
25
25
26
- - ** description** (String) textual description of the project
27
26
- ** id** (String) id of the project
28
27
- ** name** (String) the name of the project
29
28
30
29
### Read-Only
31
30
32
31
- ** created_by** (String) textual description of the entity who created the project
32
+ - ** description** (String) textual description of the project
33
33
- ** role** (String) role of the authenticated user (through api key) in the project
34
34
35
35
Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ data "env0_template" "example" {
37
37
- ** retry_on_deploy_only_when_matches_regex** (String) if specified, will only retry (on deploy) if error matches specified regex
38
38
- ** retry_on_destroy_only_when_matches_regex** (String) if specified, will only retry (on destroy) if error matches specified regex
39
39
- ** 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
41
40
- ** terraform_version** (String) terraform version to use
42
41
- ** type** (String) 'terraform' or 'terragrunt'
43
42
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ data "env0_project" "project" {
24
24
}
25
25
26
26
resource "env0_cloud_credentials_project_assignment" "example" {
27
- credential_id = data. env0_aws_credentials.credentials.id
27
+ credential_id = env0_aws_credentials.credentials.id
28
28
project_id = data.env0_project.project.id
29
29
}
30
30
```
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ resource "env0_ssh_key" "tested" {
33
33
### Required
34
34
35
35
- ** 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-----)
37
37
38
38
### Optional
39
39
You can’t perform that action at this time.
0 commit comments