This file contains hidden or 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
import boto3 | |
session = boto3.session.Session(profile_name='test') | |
cf_client = session.client("cloudformation", region_name="eu-west-2") | |
route_53_client = session.client("route53", region_name="eu-west-2") | |
# Even though at least some zones are visible in the console, they don't seem to be here. | |
resources = cf_client.describe_stack_resources(StackName='domains-iac-stack') |