probeASG

desired_equals_healthy_tags

Returns if desired number matches the number of healthy instances for each of the auto-scaling groups matching tags provided

Activity as code

Below are the details and signature of the activity Python module.

Typeprobe
Modulechaosaws.asg.probes
Namedesired_equals_healthy_tags
Returnboolean

Usage

JSON

{
  "name": "desired-equals-healthy-tags",
  "type": "probe",
  "provider": {
    "type": "python",
    "module": "chaosaws.asg.probes",
    "func": "desired_equals_healthy_tags",
    "arguments": {
      "tags": []
    }
  }
}

YAML

name: desired-equals-healthy-tags
provider:
  arguments:
    tags: []
  func: desired_equals_healthy_tags
  module: chaosaws.asg.probes
  type: python
type: probe

Arguments

NameTypeDefaultRequiredTitleDescription
tagslistnullNoASG TagsList of AWS tags for to identify ASG by tags

tags are expected as:

[{
    'Key': 'KeyName',
    'Value': 'KeyValue'
},
...
]

Signature

def desired_equals_healthy_tags(
        tags: List[Dict[str, str]],
        configuration: Dict[str, Dict[str, str]] = None,
        secrets: Dict[str, Dict[str, str]] = None) -> bool:
    pass