Skip to content

Instantly share code, notes, and snippets.

@rafalcieslak
Created August 3, 2017 21:02
Show Gist options
  • Save rafalcieslak/c4f183fc6f4cf175738fabebd5b3f4f6 to your computer and use it in GitHub Desktop.
Save rafalcieslak/c4f183fc6f4cf175738fabebd5b3f4f6 to your computer and use it in GitHub Desktop.
AWS service names generator
#!/usr/bin/env python3
import random
A = ['elastic', 'elastic', 'elastic', 'elasti', 'reliable', 'managed', 'simple', 'virtual', 'amazon', 'redundant']
B = ['database', 'server', 'compute', 'storage', 'load', 'network', 'email', 'queue', 'notification', 'data']
C = ['service', 'service', 'service', 'storage', 'cloud', 'processing', 'adapter', 'balancing', 'system', 'pipeline', 'workflow']
a,b,c = random.choice(A),random.choice(B),random.choice(C)
a,b,c = (x.capitalize() for x in [a,b,c])
q = a[0] + b[0] + c[0]
print ("%s: %s %s %s" % (q,a,b,c))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment