AWS
set_security_groups
Changes the security groups for the specified load balancer(s)
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosaws.elbv2.actions |
Name | delete_load_balancer |
Return | None |
Usage
JSON
{
"name": "delete-load-balancer",
"type": "action",
"provider": {
"type": "python",
"module": "chaosaws.elbv2.actions",
"func": "delete_load_balancer",
"arguments": {
"load_balancer_names": []
}
}
}
YAML
name: delete-load-balancer
provider:
arguments:
load_balancer_names: []
func: delete_load_balancer
module: chaosaws.elbv2.actions
type: python
type: action
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
load_balancer_names | list | Yes | Load Balancer Names | List of LB names |
Signature
def delete_load_balancer(load_balancer_names: List[str],
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None):
pass