lambda: fix undefined variable and initially define account_id as None (#32249)

This commit is contained in:
Sloane Hertel 2017-10-27 09:40:01 -04:00 committed by GitHub
parent cd76e987f3
commit 27b2c3bd25

View file

@ -225,6 +225,7 @@ def get_account_id(module, region=None, endpoint=None, **aws_connect_kwargs):
several different ways. Giving either IAM or STS privilages to several different ways. Giving either IAM or STS privilages to
the account should be enough to permit this. the account should be enough to permit this.
""" """
account_id = None
try: try:
sts_client = boto3_conn(module, conn_type='client', resource='sts', sts_client = boto3_conn(module, conn_type='client', resource='sts',
region=region, endpoint=endpoint, **aws_connect_kwargs) region=region, endpoint=endpoint, **aws_connect_kwargs)