Ends in
00
days
00
hrs
00
mins
00
secs
ENROLL NOW

Get $4 OFF in AWS Solutions Architect & Data Engineer Associate Practice Exams for $10.99 each ONLY!

eljohnacebedo

About Carlo Acebedo

Carlo is a cloud engineer and a content creator at Tutorials Dojo. He's also a member of the AWS Community builder and holds 5 AWS Certifications. Carlo specializes in building and automating solutions in the Amazon Web Services Cloud.

Understanding the IAM:PassRole Permission

2023-08-24T02:44:43+00:00

Introduction Many AWS services often require the use of an IAM role to execute actions on your behalf. For example, when you create a Lambda function, you assign an execution role to it. AWS can generate one for you automatically, and then you define the permissions you want it to have after. Most of the time, that's the case. However, there are instances when you might choose to associate an existing IAM role. In practice, we often concentrate on which permissions a user is allowed to perform and which are off-limits. But what's often overlooked are the IAM roles a [...]

Understanding the IAM:PassRole Permission2023-08-24T02:44:43+00:00

Different Ways of Passing Parameters Securely in CloudFormation

2023-04-27T12:27:15+00:00

Introduction When writing CloudFormation templates, it's a security best practice to avoid hardcoding sensitive info, like client secrets, API keys, or passwords. Sharing templates with hardcoded details by mistake can put your infrastructure and data at risk. In this article, we'll explore different secure methods to pass parameters in CloudFormation templates. Using the NoEcho Attribute To avoid hardcoding parameters in your template, you can define them during stack creation using the Parameters section. However, these values will still be visible in plaintext in the Console. To mask critical data, consider using the NoEcho attribute. The NoEcho attribute offers a simple [...]

Different Ways of Passing Parameters Securely in CloudFormation2023-04-27T12:27:15+00:00

Automate Confluence Backup Using AWS Step Functions

2023-04-27T04:47:53+00:00

Introduction In this article, I'm gonna show you how you can create an automated Confluence backup in Atlassian using an AWS serverless solution. The motivation behind this article stems from a recent task I was working on a couple of weeks ago. My goal was to run a scheduled backup of Confluence data and export it to Amazon S3. Since Confluence backups are deleted 14 days after creation, it’s a good idea to have additional copies in a different location in case something goes wrong with your Confluence instance or if you need to restore data from a point in [...]

Automate Confluence Backup Using AWS Step Functions2023-04-27T04:47:53+00:00

My DVA-C02 AWS Developer Associate Exam Experience

2023-04-26T07:30:31+00:00

A few weeks ago, I took and passed the latest AWS Certified Developer Associate exam, DVA-C02. If you've already cleared DVA-C01 and intend to recertify, note that you can no longer book DVA-C01 exams. I suggest checking out this article I wrote a couple of months ago. This breaks down the changes you need to be aware of, and I’ve also shared my expectations for the DVA-C02 exam.  In this post, I'll be sharing my experience on the exam, discussing my thoughts on it, and providing tips and tricks that can hopefully help you get through it. Is DVA-C02 more [...]

My DVA-C02 AWS Developer Associate Exam Experience2023-04-26T07:30:31+00:00

Customize Your Invite Links with Amazon S3 Website Redirect

2023-04-26T07:40:26+00:00

If you use Discord, Slack, or Telegram, you're probably familiar with those long and complicated invite links used to join servers or channels. These links can be difficult to remember and may even discourage some people from joining. With URL redirection, you can create a custom and easy-to-remember domain name for your invite links. For example, you might use a domain like "discord.mycoolsite.com" that redirects to the invitation page of your Discord server, which might look something like this: "discord.com/invite/aabbCCDD". Inviting people thru a custom domain can reinforce your brand and make it easier for others to share and join [...]

Customize Your Invite Links with Amazon S3 Website Redirect2023-04-26T07:40:26+00:00

Is a Cloud Computing Career Still Worth Pursuing in 2023?

2023-04-26T07:46:51+00:00

Cloud computing has remained a hot topic in the IT field for the past years, gaining even more attention during the height of the COVID-19 pandemic. Between 2020 and 2021, there’s been a burst of cloud adoption from startups, mid-sized businesses, and even large enterprises as they looked for ways to adapt to remote work and digital operations. And it's no wonder, given the benefits it offers over traditional on-premises solutions, like more flexibility and scalability, better security, and improved collaboration and productivity. As the hype around cloud continues to grow and with the pandemic slowly easing up, you might [...]

Is a Cloud Computing Career Still Worth Pursuing in 2023?2023-04-26T07:46:51+00:00

AWS Amplify

2023-12-18T02:17:28+00:00

AWS Amplify Cheat Sheet AWS Amplify is a platform that simplifies building and deploying full-stack applications with pre-built UI components, hosting options, and easy integration with AWS services. It's flexible and scalable, making it easy to add new features and adapt to changing requirements. Amplify Services AWS Amplify offers two main services: Amplify Hosting and Amplify Studio      Amplify Hosting a fully managed CI/CD and hosting service for single-page applications (SPA), using AWS S3 and AWS CloudFront to deliver content to users around the world. Amplify takes care of managing servers, scaling the infrastructure, or configuring DNS settings for [...]

AWS Amplify2023-12-18T02:17:28+00:00

Don’t Learn AWS Until You Know These Things

2023-05-24T11:39:31+00:00

Learning AWS is like trying to drink from a firehose. At least, that's how I remember it felt when I jumped into AWS years ago as a non-IT guy. I often bounced around between different articles and Youtube videos, struggling to make sense of all the concepts. One moment, I'd be focusing on an EC2 tutorial but then realize I needed to understand VPCs first, so I'd click over to a video about networking. Each time I tried to grasp a new concept, it would lead to another until I found myself lost in a maze of information. It was [...]

Don’t Learn AWS Until You Know These Things2023-05-24T11:39:31+00:00

Reduce The Cost Of Your Lambda Functions With Event Filters (Part 2 of 2)

2023-04-27T03:15:40+00:00

Introduction In the first part of this post, we covered the concept behind event filtering in AWS Lambda and learned how it could help you save money by invoking functions only when necessary. Now it's time to put that knowledge into practice. In this part 2, we’ll see event filtering in action using Amazon Simple Queue Service (SQS) as the event source. Overview A user sends a JSON message to the SQS queue. Event source mapping picks up the message from the queue and evaluates it against the specified filtering criteria. Event source mapping invokes the Lambda function synchronously when [...]

Reduce The Cost Of Your Lambda Functions With Event Filters (Part 2 of 2)2023-04-27T03:15:40+00:00

Reduce The Cost Of Your Lambda Functions With Event Filters (Part 1 of 2)

2023-04-27T03:17:39+00:00

Problem statement You are primarily billed based on how long your Lambda functions run and how often it is invoked. This is why AWS Lambda is great for scheduled jobs, short-duration tasks, and event-based processes. But does this mean you shouldn’t use them for high-volume traffic applications? Well, the short answer is... it depends. Whether or not to use AWS Lambda for high-volume traffic workloads ultimately depends on the requirements of your application and the cost trade-off you're willing to make. Regardless, if you ever find yourself wanting to use Lambda in a high-activity application like stream processing, it’s good [...]

Reduce The Cost Of Your Lambda Functions With Event Filters (Part 1 of 2)2023-04-27T03:17:39+00:00

AWS, Azure, and GCP Certifications are consistently among the top-paying IT certifications in the world, considering that most companies have now shifted to the cloud. Earn over $150,000 per year with an AWS, Azure, or GCP certification!

Follow us on LinkedIn, Facebook, or join our Slack study group. More importantly, answer as many practice exams as you can to help increase your chances of passing your certification exams on your first try!