Scenario: Your team is working on a project that involves deploying multiple AWS Lambda functions across different environments. How would you manage environment-specific configuration settings?

  • Embed environment-specific settings directly in the Lambda function code
  • Store configuration settings in separate plaintext files for each environment
  • Use AWS Systems Manager Parameter Store
  • Use environment variables to pass configuration settings
Leveraging AWS Systems Manager Parameter Store enables you to centrally manage environment-specific configuration settings and retrieve them securely in your Lambda functions, regardless of the environment they are deployed in.

Scenario: During the execution of an AWS Lambda function, you need to dynamically adjust certain parameters based on incoming data. How would you approach this using environment variables?

  • Store adjustable parameters in a plaintext configuration file
  • Use AWS CloudWatch Events to trigger parameter updates
  • Use AWS Step Functions to dynamically adjust parameters
  • Use environment variables to store adjustable parameters
Leveraging environment variables to store adjustable parameters allows you to dynamically adjust certain parameters during the execution of a Lambda function based on incoming data, providing flexibility and scalability.

IAM allows you to grant temporary __________ to users, groups, or roles.

  • Credentials
  • Permissions
  • Policies
  • Resources
IAM allows you to grant temporary credentials to users, groups, or roles, enabling them to access AWS resources for a limited time.

Scenario: You need to provide AWS Lambda functions access to specific S3 buckets. How would you configure IAM roles to achieve this securely?

  • Allow public access to S3 buckets
  • Create an IAM role with a policy granting access to the required S3 buckets, and attach this role to the AWS Lambda functions.
  • Share AWS access keys with Lambda functions
  • Use a single IAM user for all Lambda functions
Creating an IAM role with a policy granting access to the required S3 buckets, and attaching this role to the AWS Lambda functions is the correct and secure approach.

What is the primary purpose of IAM roles in AWS?

  • Authenticating users
  • Delegating permissions
  • Managing billing
  • Storing data
IAM roles in AWS are used to delegate permissions to entities such as AWS services, EC2 instances, or applications, without the need for long-term credentials.

What are the fundamental components of an IAM policy?

  • Functions, Variables, Conditions
  • Regions, Availability Zones, Endpoints
  • Statements, Effects, Resources
  • Users, Groups, Roles
IAM policies consist of statements that define the permissions, effects that determine whether the permissions are allowed or denied, and resources to which the policy applies.

How are IAM roles different from IAM users?

  • IAM roles are meant for temporary access
  • IAM roles are only used for authentication
  • IAM roles are specific to AWS services
  • IAM roles cannot have policies attached
IAM roles in AWS are intended for temporary access by entities such as EC2 instances or AWS services, while IAM users are typically for long-term access by humans or applications.

How do you grant permissions to an IAM role?

  • By attaching IAM policies
  • By configuring network settings
  • By creating new IAM users
  • By installing third-party software
Permissions in IAM roles are granted by attaching IAM policies, which define the actions that can be performed and the resources that can be accessed.

What is the least privilege principle in IAM?

  • Giving users all available permissions
  • Giving users only the permissions they need
  • Giving users permissions based on their job titles
  • Giving users temporary permissions
The least privilege principle in IAM involves granting users or roles only the permissions they need to perform their tasks, reducing the risk of excessive access.

What is the purpose of IAM policies attached to IAM users or groups?

  • To define permissions for accessing AWS resources
  • To define user authentication methods
  • To manage billing information
  • To manage network configurations
IAM policies attached to IAM users or groups are used to define the permissions that users or groups have for accessing AWS resources, specifying allowed actions and resources.