action Fault Injection Simulator

restore_availability_zone_power_after_interruption

Undo the 'AZ Availability - Power Interruption' scenario

Run it now
View details
Typeaction
Modulechaosaws.fis.actions
Namerestore_availability_zone_power_after_interruption
Returnmapping

Usage

JSON

{
  "name": "restore-availability-zone-power-after-interruption",
  "type": "action",
  "provider": {
    "type": "python",
    "module": "chaosaws.fis.actions",
    "func": "restore_availability_zone_power_after_interruption"
  }
}

YAML

name: restore-availability-zone-power-after-interruption
provider:
  func: restore_availability_zone_power_after_interruption
  module: chaosaws.fis.actions
  type: python
type: action

Arguments

NameTypeDefaultRequiredTitleDescription
tagsstringreliably=true,chaoseengineering=trueNoTagsComma-separated list of tags that will be used to help you identify this particular experiment
delete_roles_and_policiesbooleantrueNoDelete Roles & PoliciesUnset this if you want to keep the roles and policies for that experiment
delete_templatesbooleantrueNoDelete TemplateDelete the FIS experiment template for this experiment

Signature

def restore_availability_zone_power_after_interruption(
        tags: Union[str, Dict[str, str], NoneType] = None,
        delete_roles_and_policies: bool = True,
        delete_templates: bool = True,
        configuration: Dict[str, Dict[str, str]] = None,
        secrets: Dict[str, Dict[str, str]] = None) -> List[Dict[str, Any]]:
    pass