def generate_password()

in functions/source/aws_qs_create_org/aws_qs_create_org.py [0:0]


def generate_password():
    password = ''.join(random.choice(string.ascii_letters + string.digits + string.punctuation) for i in range(8))
    return password