Search result for 'AWS'
- Most recent
- Most popular
- Most linked
- Most download
- Favorited
Set up AWS CLI and configure it with the necessary credentials and region us-west-2This script sets up AWS CLI with the necessary credentials and configures the default region to us-west-2. |
|
Create an IAM role with the necessary permissions for EKS and attach it to the EC2 instancesThis script creates an IAM role with the necessary permissions for EKS and attaches it to EC2 instances. |
|
|
Plan and configuration for creating an EKS cluster and adding a worker nodeTo create an EKS cluster and add a worker node, we need to follow these steps: 1. **VPC and Subnets**: Create a VPC with public and private subnets across multiple availability zones in the us-west-2 region. 2. **Security Groups**: Set up security groups to allow necessary traffic for the EKS cluster and worker nodes. 3. **IAM Roles**: Create IAM roles for the EKS cluster and worker nodes w... |
|
Create a VPC, subnets, and security groups required for the EKS cluster in the us-west-2 region.This script creates a VPC, subnets, and security groups required for the EKS cluster in the us-west-2 region, ensuring no conflicts with existing resources. |
|
Create worker nodes for EKS cluster 'my-eks-cluster' with t3.micro type EC2 instances, maximum 2 worker nodes, in us-west-2This script creates a node group for the EKS cluster 'my-eks-cluster' with t3.micro EC2 instances, setting the desired capacity to 2, in the us-west-2 region. |
|
Create an EKS cluster in region us-west-2 using the pre-configured VPC, security groups, and IAM roles with Kubernetes version 1.31.This script creates an EKS cluster in the us-west-2 region using the specified VPC, security groups, and IAM roles with Kubernetes version 1.32, and outputs the ARN of the created EKS cluster. |
|
Create a VPC in the us-west-2 region for the EKS cluster.This script checks for existing VPCs to avoid conflicts and creates a new VPC in the us-west-2 region if it doesn't already exist. |
|
Create subnets within the VPC in the us-west-2 region for the EKS cluster.This script creates new subnets within the specified VPC in the us-west-2 region for the EKS cluster, finding non-conflicting CIDRs dynamically by iterating through potential CIDR blocks starting from a higher range to avoid conflicts. |
|
Create security groups within the VPC in the us-west-2 region for the EKS cluster.This script checks if the security group already exists within the specified VPC in the us-west-2 region for the EKS cluster. If it doesn't exist, it creates the security group and authorizes inbound traffic. |
|
Deployment of an EKS Cluster with Worker Nodes in AWSThe workflow involves planning and configuring the necessary components to establish an Amazon EKS cluster in the specified region. It begins with the creation of a Virtual Private Cloud (VPC), subnets, and security groups essential for the cluster's operation. Following this, an EKS cluster named 'my-eks-cluster' is set up, along with a worker node to ensure functionality. The process conclud... |
|
Evaluate the AWS account password policy for IAM users against the specified requirements; return NON_COMPLIANT if the policy does not meet all defined criteria. Tabulate the results.Evaluates AWS IAM password policy against specified criteria and tabulates the results. |
|
Identify non-compliant IAM users and reasons for non-complianceIdentifies IAM users who are non-compliant with the password policy and lists them. |
|
Evaluate all AWS CloudTrail configurations to verify that log file validation is enabled; return NON_COMPLIANT if any trail does not have log file validation enabled.This script evaluates AWS CloudTrail configurations to verify log file validation and prints the compliance results. |
|
Tabulate the results of the AWS CloudTrail log file validation evaluation.This script tabulates the results of AWS CloudTrail log file validation compliance evaluation. |
|
Evaluate all AWS CloudTrail configurations to verify that log file validation is enabled; return NON_COMPLIANT if any trail does not have log file validation enabled. Tabulate the results.This script evaluates AWS CloudTrail configurations to verify log file validation and tabulates the compliance results. |
|
Evaluate all AWS CloudTrail configurations and verify SSE-KMS encryptionThis script evaluates AWS CloudTrail configurations to verify if SSE-KMS encryption is enabled and tabulates the compliance results. |
|
Tell the compliance status for AWS account, such as where there is no multi-region CloudTrail or where CloudTrail excludes management events (e.g., AWS KMS, Amazon RDS Data API) and flag them as NON_COMPLIANT.Checks AWS CloudTrail compliance for multi-region and management events inclusion, flags non-compliance. |
|
List all Amazon VPCs.The script lists all VPCs in the us-east-2 region using boto3 with credentials. |
|