AWS
count_instances
Return count of instances matching the specified filters
Below are the details and signature of the activity Python module.
Type | action |
Module | chaosaws.ec2.actions |
Name | restart_instances |
Return | list |
Usage
JSON
{
"name": "restart-instances",
"type": "action",
"provider": {
"type": "python",
"module": "chaosaws.ec2.actions",
"func": "restart_instances"
}
}
YAML
name: restart-instances
provider:
func: restart_instances
module: chaosaws.ec2.actions
type: python
type: action
Arguments
Name | Type | Default | Required | Title | Description |
---|---|---|---|---|---|
instance_ids | list | null | No | Instance IDs | List of instance identifiers, or filters below |
filters | list | null | No | Instance Filters | List of key/value pairs to select instances |
az | string | null | No | Availability Zone | Availability zone to target. If the other fields are left empty, all instances in this AZ will be restarted |
WARNING: If only an Availability Zone is provided, all instances in the provided AZ will be restarted.
Additional filters may be used to narrow the scope: https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2.html#EC2.Client.describe_instances
Signature
def restart_instances(
instance_ids: List[str] = None,
az: str = None,
filters: List[Dict[str, Any]] = None,
configuration: Dict[str, Dict[str, str]] = None,
secrets: Dict[str, Dict[str, str]] = None) -> List[Dict[str, Any]]:
pass