Hello everyone, I'm following this AWS tutorial: <...
# aws
e
Hello everyone, I'm following this AWS tutorial: https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-private-custom-domains-tutorial.html However, I'm stuck on the first step. I need to create a custom domain for my private API Gateway, but I've noticed that neither
aws.apigateway.DomainName
nor
aws.apigatewayv2.DomainName
allow me to specify the PRIVATE type in the endpoint configuration. Is there another class I should use for this purpose, or is this functionality not supported in Pulumi?
f
it is unreleased in terraform aws provider https://github.com/hashicorp/terraform-provider-aws/blob/v5.82.0/CHANGELOG.md have you checked if this can be implemented using aws-native provider which interacts with cloud control api?
e
Thanks for this info. I’ll try to find if it is possible with aws-native provider. So far I didn’t find any way and started to look on the CustomResouce from aws.cloudformation…
This works, thank you so much for pointing me to the aws_native!
f
you are welcome! 👍