Hello! When creating a `aws.route53.ResolverEndpoi...
# aws
n
Hello! When creating a
aws.route53.ResolverEndpoint
, if I pass a
subnet_id
into the
ResolverEndpointIpAddressArgs
constructor, is there a way for me to obtain an
Output
that represents the IP address that AWS assigned to the endpoint? Thanks in advance.
I think it ended up being simpler than I thought, the
ip_addresses
attribute has the discrete IPs:
Copy code
resolver_endpoints.ip_addresses.apply(
            lambda ip_objs: map(lambda ip_obj: ip_obj.ip, ip_objs)
        )
I would maybe update the docs to reflect that
ip_addresses
is not only an input but also an output.