lambda: fix undefined variable and initially define account_id as None (#32249)
This commit is contained in:
parent
cd76e987f3
commit
27b2c3bd25
1 changed files with 1 additions and 0 deletions
|
@ -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
|
||||
the account should be enough to permit this.
|
||||
"""
|
||||
account_id = None
|
||||
try:
|
||||
sts_client = boto3_conn(module, conn_type='client', resource='sts',
|
||||
region=region, endpoint=endpoint, **aws_connect_kwargs)
|
||||
|
|
Loading…
Reference in a new issue