I am using Amazon AWS as a back-end for my application development. I am mainly using the 2 resources of AWS -
- S3 bucket storage
- AppSync (With DynamoDB as Data Source)
I want to use or 'apply' SSL certificates for security on above 2 resources. I know I can create certificate from AWS Certificate Manager.
The problem is the documention mentions that certificates can only be applied to the below 6 resources: https://docs.aws.amazon.com/acm/latest/userguide/acm-services.html
- Load Balancer
- CloudFront
- Elastic Beanstalk
- API Gateway
- Cloud Formation
- Nitro Enclaves
I have already mentioned that I am using S3 and AppSync. These 2 resources are not in the above list. How do I apply certificates on the 2 resources - S3 and AppSync ?
Do I need to do some kind of workaround ?
s3
. Also I am maintainingAppSync (DynamoDB database)
for maintaining records of the pics uploaded and which pic belongs to which user and more. Therefore I am using onlys3
andAppSync
- only these 2 services for my mobile app. I want to attach my self-created SSL certificate to s3 and/or AppSync.