Skip to content

Commit

Permalink
Merge branch 'feat_cloud_cost_credentials-#218' of https://github.com…
Browse files Browse the repository at this point in the history
…/env0/terraform-provider-env0 into feat_cloud_cost_credentials-#218
  • Loading branch information
samuel-br committed Mar 16, 2022
2 parents e6f739c + 8e6426e commit a0c2052
Show file tree
Hide file tree
Showing 5 changed files with 108 additions and 4 deletions.
23 changes: 23 additions & 0 deletions docs/data-sources/azure_cost_credentials.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "env0_azure_cost_credentials Data Source - terraform-provider-env0"
subcategory: ""
description: |-
---

# env0_azure_cost_credentials (Data Source)





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

### Optional

- **id** (String) the id of the credential
- **name** (String) the name of the credential


23 changes: 23 additions & 0 deletions docs/data-sources/google_cost_credentials.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "env0_google_cost_credentials Data Source - terraform-provider-env0"
subcategory: ""
description: |-
---

# env0_google_cost_credentials (Data Source)





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

### Optional

- **id** (String) the id of the credential
- **name** (String) the name of the credential


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

# env0_azure_cost_credentials (Resource)





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

### Required

- **client_Id** (String) the azure client id
- **client_Secret** (String, Sensitive) azure client secret
- **name** (String) name for the credentials
- **subscription_Id** (String) azure subscription id
- **tenant_Id** (String) azure tenant id

### Optional

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


8 changes: 4 additions & 4 deletions docs/resources/azure_credentials.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ description: |-

```terraform
resource "env0_azure_credentials" "credentials" {
name = "name"
client_id = "client_id"
client_secret = "client_secret"
name = "name"
client_id = "client_id"
client_secret = "client_secret"
subscription_id = "subscription_id"
tenant_id = "tenant_id"
tenant_id = "tenant_id"
}
```

Expand Down
28 changes: 28 additions & 0 deletions docs/resources/google_cost_credentials.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_google_cost_credentials Resource - terraform-provider-env0"
subcategory: ""
description: |-
---

# env0_google_cost_credentials (Resource)





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

### Required

- **name** (String) name for the credentials
- **secret** (String, Sensitive) the secret of this credentials
- **table_Id** (String) the table id of this credentials

### Optional

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


0 comments on commit a0c2052

Please sign in to comment.