AWS mistakes to avoid
cloudonaut.io
AWS mistakes to avoid
1–10 of 276 posts
Re: AWS mistakes to avoid
#2Have fun migrating data and re-indexing constantly!
Re: AWS mistakes to avoid
#3Re: AWS mistakes to avoid
#4Also, dont use Dynamo unless you have a really good reason. "It scales better than MySQL" is not a good reason. Have fun migrating data and re-indexing constantly!
Re: AWS mistakes to avoid
#5Re: AWS mistakes to avoid
#6[deleted]
Re: AWS mistakes to avoid
#7I find there are a lot of high-level abstracted tutorials, but for the new services, there aren't a lot of detailed tutorials.
For instance, an implemented cognito->gateway->lambda->dynamodb is really hard for a newbie to do.
Re: AWS mistakes to avoid
#8You know what I've realized that's really important. More AWS tutorials is really needed. There's numerous of new programmers who want to learn AWS, but can't finish building anything because they get buried in documentation. I find there are a lot of high-level abstracted tutorials, but for the new services, there aren't a lot of detailed tutorials. For instance, an implemented cognito->gateway->lambda->dynamodb is…
Re: AWS mistakes to avoid
#9 {
"Version": "2012-10-17",
"Statement": [
{
"Sid": "SOME-ID-HERE",
"Effect": "Allow",
"Action": [
"ec2:*"
],
"Condition": {
"StringEquals": {
"ec2:Region": "us-west-2"
}
},
"Resource": [
"*"
]
}
]
}