-
Notifications
You must be signed in to change notification settings - Fork 4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
globalaccelerator: ip addresses attribute from the Accelerator construct #28051
Comments
Yes, we should expose that to the L2 attributes and we welcome any any pull request from the community. For now, you can work it around with this const myga = new ga.Accelerator(this, 'GA');
const cfnAccelerator = myga.node.tryFindChild('Resource') as ga.CfnAccelerator
cfnAccelerator.attrIpv4Addresses // the IPv4 addresses |
I'll take this. |
|
Describe the feature
It would be helpful to have the public IP addresses associated with the Accelerator (Global Accelerator) available as properties during stack definition.
Use Case
As some of applications 3rd party and internally built may require firewall or open port setting requiring the public IP address in configuration, this property (IPAddresses) would be useful. I haven't found another way (Fn:GetAttr) to be able to get this information easily.
Proposed Solution
The addition of a read only property of the Accelerator object named something similar to IPAddresses that lists the 2 IP Addresses for the Accelerator object
Other Information
No response
Acknowledgements
CDK version used
2.106.0
Environment details (OS name and version, etc.)
Windows 11, Visual Studio 2022 Community Edition, .Net 6
The text was updated successfully, but these errors were encountered: