Hi, every one ,What’s the difference between using...
# python
o
Hi, every one ,What’s the difference between using
pulumi_aws_apigateway
and
pulumi_aws.apigateway
?
b
the first one (
pulumi_aws_apigateway
) is a component that makes life a bit easier when it comes to deploying those resources (https://www.pulumi.com/registry/packages/aws-apigateway/).
pulumi_aws
is the core AWS Classic provider (https://www.pulumi.com/registry/packages/aws/) so the
apigateway
module in that gives you access to all the resources so is more configurable (https://www.pulumi.com/registry/packages/aws/api-docs/apigateway/)
o
oh, I see , Thankyou ! @brave-planet-10645