RobertoTorinocloudit.hashnode.dev·Nov 4, 2022Specify An AWS Account Principal In A Resource Based PolicyThere are three ways to specify an account principal in a resource based policy in AWS, they all do the same, why not just one? Ask AWS... "Principal": { "AWS": "arn:aws:iam::100000100001:root" } "Principal": { "AWS": "200002000002" } "Principal": { ...43 readsAWS
RobertoTorinocloudit.hashnode.dev·Nov 4, 2022AWS CDK: Add Notifications To Your CodePipeline And Publish Them To Slack Via AWS ChatBotA simple example on how to enable alerts on your CodePipeline actions trigger them and send those alert notifications to your Slack Channel: // to build the pipeline: no changes possible after this! chatBotClientPipeline.buildPipeline(); // sns topi...1 like·619 readsawsome