Creating IAM Roles and associating them with EC2 Instances in CloudFormation
bogotobogo.com site search:
IAM Role
An IAM Role consists of two parts: Permission policy and Trust policy.
The permission policy specifies the permission of the role while the trust policy describes who can assume that role.
Once the IAM Role is assumed by an allowed entiry, AWS STS (Security Token Service) provides the temporary security credentials to the entity. The temporary security credentials contain the following:
- Session Token
- Access Key ID
- Secret Access Key
- Expiration
IAM Role CloudFormation
Here is a simple template in json to create IAM Roles and associating them with EC2 Instances in CloudFormation.:
{ "AWSTemplateFormatVersion": "2010-09-09", "Resources": { "myDummyRole": { "Type": "AWS::IAM::Role", "Properties": { "AssumeRolePolicyDocument": { "Statement": [{ "Effect": "Allow", "Principal": { "Service": ["ec2.amazonaws.com"] }, "Action": ["sts:AssumeRole"] }] }, "Path": "/" } }, "myDummyInstanceProfile": { "Type": "AWS::IAM::InstanceProfile", "Properties": { "Path": "/", "Roles": [{ "Ref": "myDummyRole" }] } }, "myDummyRolePolicies": { "Type": "AWS::IAM::Policy", "Properties": { "PolicyName": "myDummy", "PolicyDocument": { "Statement": [{ "Effect": "Allow", "Action": "*", "Resource": "*" }] }, "Roles": [{ "Ref": "myDummyRole" }] } }, "myEC2Instance": { "Type": "AWS::EC2::Instance", "Properties": { "ImageId": "ami-80861296", "InstanceType": "t2.nano", "Monitoring": "true", "DisableApiTermination": "false", "IamInstanceProfile": { "Ref": "myDummyInstanceProfile" } } } } }
Here are the steps:
- Create the AssumeRolePolicy Statement and AssumeRolePolicyDocument. We create our Statement with EC2 as the principal and AssumeRole as the action.
- Create an AWS::IAM::Role for our EC2 instance, associating that role with the AssumeRolePolicyDocument.
- Create an AWS::IAM::InstanceProfile associated with our AWS::IAM::Role. "myDummyInstanceProfile": { "Type": "AWS::IAM::InstanceProfile", "Properties": { "Path": "/", "Roles": [{ "Ref": "myDummyRole" }] } },
- Create a policy Statement that defines the allowed action. The role of an IAM Policy is to associate a PolicyDocument with one or more of the instance roles. In other words, there is a one-to-one mapping of an IAM Policy to a PolicyDocument but the IAM Policy can hold more than one instance role.
- Put that policy Statement in a PolicyDocument. The associated PolicyDocument holds the PolicyStatement. We will see this pattern when dealing with IAM roles in CloudFormation over and over: creating standalone policy Statement that then get added to PolicyDocument. It is the PolicyDocument that is referenced by other resources.
- Create an AWS::IAM::Policy for our PolicyDocument and associate it with all the AWS::IAM::Role, i.e., instances, that need that role.
- Finally, when we create our instance resource, associate our AWS::IAM::InstanceProfile with our instance using the IamInstanceProfile property. We only specify a path. Here, we give the root path, /, but we could use the path to restrict where this policy an be applied. For each instance role we create, we need to create an InstanceProfile. There is a one-to-one mapping between instance roles and InstanceProfiles.
"myDummyRole": { "Type": "AWS::IAM::Role", "Properties": { "AssumeRolePolicyDocument": { "Statement": [{ "Effect": "Allow", "Principal": { "Service": ["ec2.amazonaws.com"] }, "Action": ["sts:AssumeRole"] }] }, "Path": "/" } },
"myDummyRolePolicies": { "Type": "AWS::IAM::Policy", "Properties": { "PolicyName": "myDummy", "PolicyDocument": { "Statement": [{ "Effect": "Allow", "Action": "*", "Resource": "*" }] }, "Roles": [{ "Ref": "myDummyRole" }] } },
"myDummyInstanceProfile": { "Type": "AWS::IAM::InstanceProfile", "Properties": { "Path": "/", "Roles": [{ "Ref": "myDummyRole" }] } }, "myEC2Instance": { "Type": "AWS::EC2::Instance", "Properties": { "ImageId": "ami-80861296", "InstanceType": "t2.nano", "Monitoring": "true", "DisableApiTermination": "false", "IamInstanceProfile": { "Ref": "myDummyInstanceProfile" } } }
AWS (Amazon Web Services)
- AWS : EKS (Elastic Container Service for Kubernetes)
- AWS : Creating a snapshot (cloning an image)
- AWS : Attaching Amazon EBS volume to an instance
- AWS : Adding swap space to an attached volume via mkswap and swapon
- AWS : Creating an EC2 instance and attaching Amazon EBS volume to the instance using Python boto module with User data
- AWS : Creating an instance to a new region by copying an AMI
- AWS : S3 (Simple Storage Service) 1
- AWS : S3 (Simple Storage Service) 2 - Creating and Deleting a Bucket
- AWS : S3 (Simple Storage Service) 3 - Bucket Versioning
- AWS : S3 (Simple Storage Service) 4 - Uploading a large file
- AWS : S3 (Simple Storage Service) 5 - Uploading folders/files recursively
- AWS : S3 (Simple Storage Service) 6 - Bucket Policy for File/Folder View/Download
- AWS : S3 (Simple Storage Service) 7 - How to Copy or Move Objects from one region to another
- AWS : S3 (Simple Storage Service) 8 - Archiving S3 Data to Glacier
- AWS : Creating a CloudFront distribution with an Amazon S3 origin
- AWS : Creating VPC with CloudFormation
- AWS : WAF (Web Application Firewall) with preconfigured CloudFormation template and Web ACL for CloudFront distribution
- AWS : CloudWatch & Logs with Lambda Function / S3
- AWS : Lambda Serverless Computing with EC2, CloudWatch Alarm, SNS
- AWS : Lambda and SNS - cross account
- AWS : CLI (Command Line Interface)
- AWS : CLI (ECS with ALB & autoscaling)
- AWS : ECS with cloudformation and json task definition
- AWS Application Load Balancer (ALB) and ECS with Flask app
- AWS : Load Balancing with HAProxy (High Availability Proxy)
- AWS : VirtualBox on EC2
- AWS : NTP setup on EC2
- AWS: jq with AWS
- AWS & OpenSSL : Creating / Installing a Server SSL Certificate
- AWS : OpenVPN Access Server 2 Install
- AWS : VPC (Virtual Private Cloud) 1 - netmask, subnets, default gateway, and CIDR
- AWS : VPC (Virtual Private Cloud) 2 - VPC Wizard
- AWS : VPC (Virtual Private Cloud) 3 - VPC Wizard with NAT
- DevOps / Sys Admin Q & A (VI) - AWS VPC setup (public/private subnets with NAT)
- AWS - OpenVPN Protocols : PPTP, L2TP/IPsec, and OpenVPN
- AWS : Autoscaling group (ASG)
- AWS : Setting up Autoscaling Alarms and Notifications via CLI and Cloudformation
- AWS : Adding a SSH User Account on Linux Instance
- AWS : Windows Servers - Remote Desktop Connections using RDP
- AWS : Scheduled stopping and starting an instance - python & cron
- AWS : Detecting stopped instance and sending an alert email using Mandrill smtp
- AWS : Elastic Beanstalk with NodeJS
- AWS : Elastic Beanstalk Inplace/Rolling Blue/Green Deploy
- AWS : Identity and Access Management (IAM) Roles for Amazon EC2
- AWS : Identity and Access Management (IAM) Policies, sts AssumeRole, and delegate access across AWS accounts
- AWS : Identity and Access Management (IAM) sts assume role via aws cli2
- AWS : Creating IAM Roles and associating them with EC2 Instances in CloudFormation
- AWS Identity and Access Management (IAM) Roles, SSO(Single Sign On), SAML(Security Assertion Markup Language), IdP(identity provider), STS(Security Token Service), and ADFS(Active Directory Federation Services)
- AWS : Amazon Route 53
- AWS : Amazon Route 53 - DNS (Domain Name Server) setup
- AWS : Amazon Route 53 - subdomain setup and virtual host on Nginx
- AWS Amazon Route 53 : Private Hosted Zone
- AWS : SNS (Simple Notification Service) example with ELB and CloudWatch
- AWS : Lambda with AWS CloudTrail
- AWS : SQS (Simple Queue Service) with NodeJS and AWS SDK
- AWS : Redshift data warehouse
- AWS : CloudFormation
- AWS : CloudFormation Bootstrap UserData/Metadata
- AWS : CloudFormation - Creating an ASG with rolling update
- AWS : Cloudformation Cross-stack reference
- AWS : OpsWorks
- AWS : Network Load Balancer (NLB) with Autoscaling group (ASG)
- AWS CodeDeploy : Deploy an Application from GitHub
- AWS EC2 Container Service (ECS)
- AWS EC2 Container Service (ECS) II
- AWS Hello World Lambda Function
- AWS Lambda Function Q & A
- AWS Node.js Lambda Function & API Gateway
- AWS API Gateway endpoint invoking Lambda function
- AWS API Gateway invoking Lambda function with Terraform
- AWS API Gateway invoking Lambda function with Terraform - Lambda Container
- Amazon Kinesis Streams
- AWS: Kinesis Data Firehose with Lambda and ElasticSearch
- Amazon DynamoDB
- Amazon DynamoDB with Lambda and CloudWatch
- Loading DynamoDB stream to AWS Elasticsearch service with Lambda
- Amazon ML (Machine Learning)
- Simple Systems Manager (SSM)
- AWS : RDS Connecting to a DB Instance Running the SQL Server Database Engine
- AWS : RDS Importing and Exporting SQL Server Data
- AWS : RDS PostgreSQL & pgAdmin III
- AWS : RDS PostgreSQL 2 - Creating/Deleting a Table
- AWS : MySQL Replication : Master-slave
- AWS : MySQL backup & restore
- AWS RDS : Cross-Region Read Replicas for MySQL and Snapshots for PostgreSQL
- AWS : Restoring Postgres on EC2 instance from S3 backup
- AWS : Q & A
- AWS : Security
- AWS : Security groups vs. network ACLs
- AWS : Scaling-Up
- AWS : Networking
- AWS : Single Sign-on (SSO) with Okta
- AWS : JIT (Just-in-Time) with Okta
Ph.D. / Golden Gate Ave, San Francisco / Seoul National Univ / Carnegie Mellon / UC Berkeley / DevOps / Deep Learning / Visualization