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

Get any AWS Specialty Mock Test for FREE when you Buy 2 AWS Pro-Level Practice Tests – as LOW as $10.49 USD each ONLY!

aws tutorials

Home » aws tutorials » Page 7

Enhancing S3 Bucket Security by Prohibiting Uploads of Unencrypted Objects

2023-05-22T01:34:06+00:00

Amazon S3 is a widely used object storage service that allows users to store and retrieve large amounts of data. S3 is known for its scalability, durability, and cost-effectiveness, making it an ideal choice for many organizations. However, as with any cloud-based service, security is a crucial concern. One way to enhance the security of S3 buckets is by prohibiting the upload of unencrypted objects. In this article, we will explore why this is important and how it can be implemented. Why Prohibit Uploads of Unencrypted Objects? Unencrypted objects in S3 buckets can be vulnerable to data breaches, which can [...]

Enhancing S3 Bucket Security by Prohibiting Uploads of Unencrypted Objects2023-05-22T01:34:06+00:00

New AWS Cloud Practitioner Video Course Release and AWS Video Courses Price Drop

2023-09-18T02:23:31+00:00

Beginners in cloud computing find it much simpler to learn various lectures or topics through video courses. It's undoubtedly among the best tools for learning that you can use in preparing for an AWS certification exam.  Our Video Courses, created by AWS Certified professionals, will certainly help you prepare to pass your AWS  certification exams.   New AWS Certified Cloud Practitioner CLF-C02 Video Course The first step in AWS Certification is the Foundational level Cloud Practitioner exam, which is consistently among the top-paying IT certifications. The AWS Certified Cloud Practitioner exam is intended for individuals who have the knowledge and [...]

New AWS Cloud Practitioner Video Course Release and AWS Video Courses Price Drop2023-09-18T02:23:31+00:00

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

Different Types of AWS Certifications Explained in a Nutshell

2023-04-16T09:36:10+00:00

What is Amazon Web Services (AWS)? Amazon Web Services (AWS) is the most popular cloud service provider in the world, offering a wide range of cloud computing services to businesses and individuals. AWS certifications have become increasingly valuable as more and more companies move their workloads to the cloud. These certifications validate the skills and knowledge of individuals who work with AWS services, making them more employable and helping them advance in their careers. In this article, we will explore the various AWS certifications that cater to different skill levels and job roles, along with their respective prerequisites.   Foundational [...]

Different Types of AWS Certifications Explained in a Nutshell2023-04-16T09:36:10+00:00

Increase Your Chances of Passing Your AWS, Azure, and GCP Exam with these Review Strategies

2023-04-16T10:09:53+00:00

Have you ever considered obtaining a cloud certification but are unsure of the first steps or where to begin? Let me help you increase your chances of passing your AWS, Azure, and GCP exams with these review strategies. Embarking on a new journey can be daunting, especially when starting out. However, in this article, I will discuss how I started my path toward obtaining cloud certifications by sharing my studying and reviewing strategies. To begin, let me introduce myself. My name is Amiel, and I work as a Cloud and DevOps Engineer. I have been fortunate enough to earn six [...]

Increase Your Chances of Passing Your AWS, Azure, and GCP Exam with these Review Strategies2023-04-16T10:09:53+00:00

Default Host Management Configuration on AWS Systems Manager

2023-04-10T03:01:04+00:00

AWS Systems Manager’s Fleet Manager is a useful tool for managing Amazon EC2 instances on your account. It allows you to establish a private session to your instances, view detailed information about the instance, run automation such as patch installations, or execute specific Run commands to the instance’s operating system. It can also be used to manage on-premises servers or virtual machines. Using AWS Systems Manager tools requires that an IAM role is created and attached as an instance profile to your EC2 instances. It also requires that the Systems Manager Agent is installed on the instances. The Systems Manager [...]

Default Host Management Configuration on AWS Systems Manager2023-04-10T03:01:04+00:00

Using Origin Access Control (OAC) to Secure S3 Object Access to CloudFront

2023-04-26T07:50:35+00:00

What is Amazon S3 Object Access? Amazon S3 is one of the most popular AWS service organizations use, as it offers industry-leading scalability, data availability, security, and performance for object storage. S3 is utilized to store and protect any amount of data for a range of use cases, such as data lakes, websites, mobile applications, backup and restore, archive, enterprise applications, IoT devices, and big data analytics. One of the frequent use cases of Amazon S3 is for storing static media content. It works well together with CloudFront distribution, especially if the content needs to be delivered around the world. [...]

Using Origin Access Control (OAC) to Secure S3 Object Access to CloudFront2023-04-26T07:50:35+00:00

Retrieving Parameter Values from SSM Parameter Store through AWS Lambda

2023-03-27T04:01:09+00:00

In today's world, serverless computing is gaining popularity as it offers technologies for running code, managing data, and integrating applications, all without managing servers. It eliminates the infrastructure management tasks so developers can focus on application development. One of the requirements of serverless development is storage for configuration data management and secrets management. Developers need to store data such as passwords, database strings, etc., at some point. Luckily, Parameter Store, a capability of AWS Systems Manager, provides secure, hierarchical storage for configuration data management and secrets management that works well in serverless development. Developers can store values as plain text [...]

Retrieving Parameter Values from SSM Parameter Store through AWS Lambda2023-03-27T04:01:09+00:00

Secure EC2 Instances Connections Leveraging Session Manager

2023-03-20T01:27:23+00:00

As more workloads are being migrated to the cloud, security should always be a top priority. Some organizations fail to consider security and therefore paid the price of having their workloads compromised. For example, an EC2 instance that has its SSH inbound port open to the world, therefore, providing unrestricted access to attackers globally. Luckily, AWS has a service that allows you to connect to your EC2 instances without opening any inbound port, eliminating this particular security risk, and that is AWS Systems Manager Session Manager. Session Manager is a fully managed AWS Systems Manager capability. You can use an [...]

Secure EC2 Instances Connections Leveraging Session Manager2023-03-20T01:27:23+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. Upskill and 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!