I hereby claim:
- I am richid on github.
- I am richid (https://keybase.io/richid) on keybase.
- I have a public key whose fingerprint is D7AB 6286 D0E9 702A 8479 3BD7 9427 3325 8796 6919
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
def applications = env.APPLICATIONS.split(",").findAll { it }.collect { it.trim() } | |
def environment = env.ENVIRONMENT | |
def version = env.VERSION | |
def jobs = [:] | |
if (applications.size() < 1) { | |
error("ERROR: APPLICATIONS must be a comma-delimited list of applications to build") | |
} | |
for (int i = 0; i < applications.size(); i++) { |
from dataclasses import dataclass | |
from typing import Optional | |
import boto3 | |
@dataclass(frozen=True) | |
class EcsInstanceInfo: | |
ec2_id: str | |
ecs_instance_arn: str | |
ecs_cluster_arn: str |