This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Automatically fetch all member accounts in an AWS Organization and | |
update `Billing` and `Security` Contact. | |
""" | |
import boto3 | |
from botocore.exceptions import ClientError | |
def get_org_accounts(session): | |
org_client = session.client('organizations') |