Hi. I'm Anocha.

... NEVER stop learning ...

Have experience over 8 years in various applications, planning, installing and configuring Servers and Workstations. AWS Certified with extensive experience in the cloud and IT industry. Passionate about technologies especially cloud computing. Hands-on experience in AWS cloud environment such as compute, network, storage and identity & access management. Strong troubleshooting, problem-solving skills, communication, written and interpersonal skills.

Learn more about me

Here's all the stuff I do.

have fun running your code

Provision AWS infrastructure

Infrastructure as code is super fun to learn. Click link above to see some example.

Docker Container

Deploy Jenkins container

Stuyding is the key to success. see more content about fun stuff from the link above.

AWS SSO

AWS Single Sign On

AWS IAM Identity Center (Successor to AWS Single Sign-On)

Here’s some stuff I made recently.

Boto3 SDK

Get started quickly using AWS with boto3

Download Resume

PROFESSIONAL EXPERIENCE

ISV Tech Support Representative III

SHIFT4

Allentown, PA

Apr 2018 - Present


  • Provided support on Restaurant Manager’s core Point of Sale and Cloud-Based product suite.
  • Managed AWS accounts, and AWS services VPC, Security Group, IAM, MFA, S3, SSO, CloudWatch, CloudFront, and Route53.
  • Configured, maintained EC2 instances, S3 and AWS IAM and provisioned AWS infrastructure using DevOps tools such as Terraform and CloudFormation.
  • Managed AWS S3 storage lifecycle, S3 Transfer Acceleration, including hosting static websites with custom DNS.
  • Implemented a schedule of system backups and data archive operations using Veeam and CloudSync.
  • Installed, configured, and troubleshoot software packages, including operating systems, desktop software and custom applications as needed.

Technical Support Manager

INET GROUP

Rockville, MD

February 2014 - March 2018


  • Maintained essential IT operations, including POS system, domain controllers, active directory, group policy, operating systems, security tools, applications, servers, laptops, desktops, software, and hardware
  • Resolved various issues relating to all POS systems, CCTV systems, Payments integration, and online ordering systems.
  • Assisted customers in installation and operating POS software, hardware and related problems to satisfy all needs.
  • Coordinated with various teams, helped to create strong and long term business relationships.
  • Worked with vendors to track down and troubleshoot complex issues.

Certtifications

AWS Cloud Quest: Cloud Practitioner

AWS Certified Cloud Practitioner

AWS Certified Solutions Architect – Associate

AWS Cloud Technical Essentials

Active Directory on Windows Server 2016

Master Microsoft Powershell


Education

Bachelor of Business Administration (BBA), Information Systems

Rajamangala University of Technology Thanyaburi

Cloud Skills


  • AWS, EC2, S3, VPC, IAM, SG, NACL, SNS, ELB, SSO, AWS CLI, RDS, Route53, RDS, CloudFront
  • CloudWatch, CloudTrail, CloudFormation, Terraform, CI/CD, GitHub, Agile, Jira
  • Windows, Linux, MacOS, PS, Bash, Python(basic), JSON, YAML, HTML, CSS
  • Hyper-V, VMware, AD, GPO, TCP/IP, DNS, DHCP, NFS, SMB, SSH LDAP
  • ... Find me on ...



    How to create EC2 on AWS using boto3

    Once you have configured your aws profile, create a new python file and copy command below to your python file

            
    					
    					import boto3
    			
    					AWS_REGION = "us-east-1"
    					EC2_RESOURCE = boto3.resource('ec2', region_name=AWS_REGION)
    					KEY_PAIR_NAME = 'VAKey'
    					AMI_ID = 'ami-03ededff12e34e59e'
    			
    					instances = EC2_RESOURCE.create_instances(
    						MinCount = 1,
    						MaxCount = 1,
    						ImageId=AMI_ID,
    						InstanceType='t2.micro',
    						KeyName=KEY_PAIR_NAME,
    						TagSpecifications=[
    							{
    								'ResourceType': 'instance',
    								'Tags': [
    									{
    										'Key': 'Name',
    										'Value': 'my-ec2-instance'
    									},
    								]
    							},
    						]
    					)
    			
    					for instance in instances:
    						print(f'EC2 instance "{instance.id}" has been launched')
    						
    						instance.wait_until_running()
    						print(f'EC2 instance "{instance.id}" has been started')
    					
    				

    Boto3 List existing buckets

    Once you have configured your aws profile, create a new python file and copy command below to your python file

    					
    					import boto3
    					s3 = boto3.client('s3')
    					response = s3.list_buckets()
    			
    					# Output the bucket names
    					print('Existing buckets:')
    					for bucket in response['Buckets']:
    						print(f'  {bucket["Name"]}')
    			
    					
    					

    How to list IAM users on AWS using boto3

    once you have configured your aws profile, create a new python file and copy command below to your python file

    						
    					import boto3
    
    					aws_mag_con=boto3.Session(profile_name="default")
    					iam_con=aws_mag_con.resource('iam')
    					
    					for each_user in iam_con.users.all():
    						print(each_user.name)