-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d11c425
commit fd23293
Showing
13 changed files
with
484 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
layout: "" | ||
page_title: "Supported Resources" | ||
description: |- | ||
Full list of supported provider resources for Dynatrace Configuration as Code via Terraform. | ||
--- | ||
|
||
# Supported Resources | ||
|
||
Full list of supported Dynatrace Terraform provider resources with details on API endpoint and permissions is available [here](https://github.com/dynatrace-oss/terraform-provider-dynatrace/blob/main/documentation/supported-resources.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
layout: "" | ||
page_title: "dynatrace_cloud_development_environments Resource - terraform-provider-dynatrace" | ||
subcategory: "Environment Settings" | ||
description: |- | ||
The resource `dynatrace_cloud_development_environments` covers configuration for cloud development environments | ||
--- | ||
|
||
# dynatrace_cloud_development_environments (Resource) | ||
|
||
-> This resource requires the API token scopes **Read settings** (`settings.read`) and **Write settings** (`settings.write`) | ||
|
||
## Dynatrace Documentation | ||
|
||
- AppEngine - https://docs.dynatrace.com/docs/platform/appengine | ||
|
||
- Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId: `builtin:app-engine-registry.cloud-development-environments`) | ||
|
||
## Export Example Usage | ||
|
||
- `terraform-provider-dynatrace -export dynatrace_cloud_development_environments` downloads existing cloud development environments configuration | ||
|
||
The full documentation of the export feature is available [here](https://dt-url.net/h203qmc). | ||
|
||
## Resource Example Usage | ||
|
||
```terraform | ||
resource "dynatrace_cloud_development_environments" "#name#" { | ||
cloud_development_environments = ["https://example1.my-company.my-cde-provider.com", "https://example2.my-company.my-cde-provider.com", "https://example3.my-company.my-cde-provider.com"] | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Optional | ||
|
||
- `cloud_development_environments` (Set of String) The URL to allow app development from. E.g. `https://*.my-company.my-cde-provider.com`. | ||
|
||
### Read-Only | ||
|
||
- `id` (String) The ID of this resource. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.