-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #930 from F5Networks/devel_vendor_12022024
vendor sync changes
- Loading branch information
Showing
14 changed files
with
183 additions
and
171 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
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
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,43 @@ | ||
--- | ||
layout: "bigip" | ||
page_title: "BIG-IP: bigip_ltm_profile_bot_defense" | ||
subcategory: "Local Traffic Manager(LTM)" | ||
description: |- | ||
Provides details about bigip_ltm_profile_bot_defense resource | ||
--- | ||
|
||
# bigip\_ltm\_profile\_bot\_defense | ||
|
||
`bigip_ltm_profile_bot_defense` Resource used for Configures a Bot Defense profile. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
resource "bigip_ltm_profile_bot_defense" "test-bot-tc1" { | ||
name = "/Common/test-bot-tc1" | ||
defaults_from = "/Common/bot-defense" | ||
description = "test-bot" | ||
template = "relaxed" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
* `name` (Required,type `string`) Name of the Bot Defense profile,name of Profile should be full path. Full path is the combination of the `partition + profile name`,For example `/Common/test-bot-tc1`. | ||
|
||
* `defaults_from` - (optional,type `string`) Specifies the profile from which this profile inherits settings. The default is the system-supplied `bot-defense` profile. | ||
|
||
* `description` - (optional,type `string`) Specifies user-defined description. | ||
|
||
* `template` - (Optional,type `string`) Profile templates specify Mitigation and Verification Settings default values. possible ptions `balanced`,`relaxed` and `strict`. | ||
|
||
* `enforcement_mode` - (Optional,type `string`) Select the enforcement mode, possible values are `transparent` and `blocking`. | ||
|
||
|
||
## Import | ||
|
||
BIG-IP LTM Bot Defense profile can be imported using the `name`, e.g. | ||
|
||
```bash | ||
terraform import bigip_ltm_profile_bot_defense.test-bot /Common/testbotprofile01 | ||
``` |
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.