Deploy create react app's in AWS S3
yarn global add react-deploy-s3
IAM Management Console > Users > [The user you will use] > Inline Policies > Create User Policy > Custom Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:*",
"acm:describeCertificate",
"acm:requestCertificate",
"acm:addTagsToCertificate",
"cloudfront:createDistribution",
"cloudfront:createInvalidation"
],
"Effect": "Allow",
"Resource": "*"
}
]
}