-
Notifications
You must be signed in to change notification settings - Fork 34
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
234af17
commit 28b740c
Showing
24 changed files
with
4,455 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
layout: "" | ||
page_title: "dynatrace_attack_alerting Data Source - terraform-provider-dynatrace" | ||
subcategory: "Application Security" | ||
description: |- | ||
The data source `dynatrace_attack_alerting` covers queries for attack alerting profiles | ||
--- | ||
|
||
# dynatrace_attack_alerting (Data Source) | ||
|
||
The `dynatrace_attack_alerting` data source allows the attack alerting profile ID to be retrieved by its name. | ||
|
||
- `name` (String) - The name of the attack alerting profile | ||
|
||
If multiple services match the given criteria, the first result will be retrieved. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "dynatrace_attack_alerting" "Example" { | ||
name = "Terraform Example" | ||
} | ||
output "id" { | ||
value = data.dynatrace_attack_alerting.Example.id | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `name` (String) | ||
|
||
### 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
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,39 @@ | ||
--- | ||
layout: "" | ||
page_title: "dynatrace_vulnerability_alerting Data Source - terraform-provider-dynatrace" | ||
subcategory: "Application Security" | ||
description: |- | ||
The data source `dynatrace_vulnerability_alerting` covers queries for vulnerability alerting profiles | ||
--- | ||
|
||
# dynatrace_vulnerability_alerting (Data Source) | ||
|
||
The `dynatrace_vulnerability_alerting` data source allows the vulnerability alerting profile ID to be retrieved by its name. | ||
|
||
- `name` (String) - The name of the vulnerability alerting profile | ||
|
||
If multiple services match the given criteria, the first result will be retrieved. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "dynatrace_vulnerability_alerting" "Example" { | ||
name = "Terraform Example" | ||
} | ||
output "id" { | ||
value = data.dynatrace_vulnerability_alerting.Example.id | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `name` (String) | ||
|
||
### 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
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.