From cb9aa8864af8ae52fb3e6e024b9adcec18042aaf Mon Sep 17 00:00:00 2001 From: "avner.sorek" Date: Mon, 7 Jun 2021 17:31:24 +0300 Subject: [PATCH] Updating docs --- docs/data-sources/project.md | 2 +- docs/data-sources/template.md | 1 - docs/resources/cloud_credentials_project_assignment.md | 2 +- docs/resources/ssh_key.md | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/data-sources/project.md b/docs/data-sources/project.md index b9906485..b5b14fc0 100644 --- a/docs/data-sources/project.md +++ b/docs/data-sources/project.md @@ -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 diff --git a/docs/data-sources/template.md b/docs/data-sources/template.md index b8dd42cf..8663a3d9 100644 --- a/docs/data-sources/template.md +++ b/docs/data-sources/template.md @@ -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' diff --git a/docs/resources/cloud_credentials_project_assignment.md b/docs/resources/cloud_credentials_project_assignment.md index 3b2b4626..e3984a54 100644 --- a/docs/resources/cloud_credentials_project_assignment.md +++ b/docs/resources/cloud_credentials_project_assignment.md @@ -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 } ``` diff --git a/docs/resources/ssh_key.md b/docs/resources/ssh_key.md index 1bd2d9fd..1d8713e0 100644 --- a/docs/resources/ssh_key.md +++ b/docs/resources/ssh_key.md @@ -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