├── AnsibleConfig ├── cis_playbook.yml ├── component-nginx.yml └── nginx_playbook.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Deployment ├── README_ec2.md ├── README_image_builder_nginx.md ├── README_infrastructure_ssm_params.md ├── README_launch_config.md ├── README_s3.md └── README_vpc.md ├── LICENSE ├── LinuxCis ├── .ansible-lint ├── .gitignore ├── .yamllint ├── LICENSE ├── README.md ├── ansible.cfg ├── defaults │ └── main.yml ├── files │ └── etc │ │ └── systemd │ │ └── system │ │ └── tmp.mount ├── handlers │ └── main.yml ├── library │ └── grub_crypt.py ├── requirements.txt ├── tasks │ ├── main.yml │ ├── post.yml │ ├── prelim.yml │ ├── section1.yml │ ├── section2.yml │ ├── section3.yml │ ├── section4.yml │ ├── section5.yml │ └── section6.yml └── templates │ ├── audit │ ├── rhel7cis_rule_4_1_10.rules.j2 │ ├── rhel7cis_rule_4_1_11.rules.j2 │ ├── rhel7cis_rule_4_1_12.rules.j2 │ ├── rhel7cis_rule_4_1_13.rules.j2 │ ├── rhel7cis_rule_4_1_14.rules.j2 │ ├── rhel7cis_rule_4_1_15.rules.j2 │ ├── rhel7cis_rule_4_1_16.rules.j2 │ ├── rhel7cis_rule_4_1_17.rules.j2 │ ├── rhel7cis_rule_4_1_18.rules.j2 │ ├── rhel7cis_rule_4_1_4.rules.j2 │ ├── rhel7cis_rule_4_1_5.rules.j2 │ ├── rhel7cis_rule_4_1_6.rules.j2 │ ├── rhel7cis_rule_4_1_7.rules.j2 │ ├── rhel7cis_rule_4_1_8.rules.j2 │ └── rhel7cis_rule_4_1_9.rules.j2 │ ├── chrony.conf.j2 │ ├── etc │ ├── issue.j2 │ ├── issue.net.j2 │ └── motd.j2 │ ├── hosts.allow.j2 │ └── ntp.conf.j2 ├── Nginx ├── .ansible-lint ├── .gitignore ├── .yamllint ├── LICENSE ├── README.md ├── defaults │ └── main.yml ├── files │ └── index.html ├── handlers │ └── main.yml ├── tasks │ ├── main.yml │ ├── setup-Debian.yml │ ├── setup-RedHat.yml │ ├── setup-Ubuntu.yml │ └── vhosts.yml ├── templates │ ├── nginx.conf.j2 │ └── vhost.j2 └── vars │ ├── Debian.yml │ └── RedHat.yml ├── Parameters ├── infrastructure-ssm-parameters.json ├── kms-params.json ├── nginx-config.json ├── nginx-image-builder-params.json ├── s3-iam-config.json ├── vpc-endpoint-params.json └── vpc-params.json ├── README.md └── Templates ├── infrastructure-ssm-params.yml ├── kms.yml ├── nginx-config.yml ├── nginx-image-builder.yml ├── s3-iam-config.yml └── vpc.yml /AnsibleConfig/cis_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/AnsibleConfig/cis_playbook.yml -------------------------------------------------------------------------------- /AnsibleConfig/component-nginx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/AnsibleConfig/component-nginx.yml -------------------------------------------------------------------------------- /AnsibleConfig/nginx_playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/AnsibleConfig/nginx_playbook.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Deployment/README_ec2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Deployment/README_ec2.md -------------------------------------------------------------------------------- /Deployment/README_image_builder_nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Deployment/README_image_builder_nginx.md -------------------------------------------------------------------------------- /Deployment/README_infrastructure_ssm_params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Deployment/README_infrastructure_ssm_params.md -------------------------------------------------------------------------------- /Deployment/README_launch_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Deployment/README_launch_config.md -------------------------------------------------------------------------------- /Deployment/README_s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Deployment/README_s3.md -------------------------------------------------------------------------------- /Deployment/README_vpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Deployment/README_vpc.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LICENSE -------------------------------------------------------------------------------- /LinuxCis/.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/.ansible-lint -------------------------------------------------------------------------------- /LinuxCis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/.gitignore -------------------------------------------------------------------------------- /LinuxCis/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/.yamllint -------------------------------------------------------------------------------- /LinuxCis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/LICENSE -------------------------------------------------------------------------------- /LinuxCis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/README.md -------------------------------------------------------------------------------- /LinuxCis/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/ansible.cfg -------------------------------------------------------------------------------- /LinuxCis/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/defaults/main.yml -------------------------------------------------------------------------------- /LinuxCis/files/etc/systemd/system/tmp.mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/files/etc/systemd/system/tmp.mount -------------------------------------------------------------------------------- /LinuxCis/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/handlers/main.yml -------------------------------------------------------------------------------- /LinuxCis/library/grub_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/library/grub_crypt.py -------------------------------------------------------------------------------- /LinuxCis/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/requirements.txt -------------------------------------------------------------------------------- /LinuxCis/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/tasks/main.yml -------------------------------------------------------------------------------- /LinuxCis/tasks/post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/tasks/post.yml -------------------------------------------------------------------------------- /LinuxCis/tasks/prelim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/tasks/prelim.yml -------------------------------------------------------------------------------- /LinuxCis/tasks/section1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/tasks/section1.yml -------------------------------------------------------------------------------- /LinuxCis/tasks/section2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/tasks/section2.yml -------------------------------------------------------------------------------- /LinuxCis/tasks/section3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/tasks/section3.yml -------------------------------------------------------------------------------- /LinuxCis/tasks/section4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/tasks/section4.yml -------------------------------------------------------------------------------- /LinuxCis/tasks/section5.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/tasks/section5.yml -------------------------------------------------------------------------------- /LinuxCis/tasks/section6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/tasks/section6.yml -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_10.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_10.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_11.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_11.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_12.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_12.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_13.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_13.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_14.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_14.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_15.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_15.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_16.rules.j2: -------------------------------------------------------------------------------- 1 | -w {{ rhel7cis_sudolog }} -p wa -k actions 2 | -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_17.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_17.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_18.rules.j2: -------------------------------------------------------------------------------- 1 | -e 2 2 | -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_4.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_4.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_5.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_5.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_6.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_6.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_7.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_7.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_8.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_8.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/audit/rhel7cis_rule_4_1_9.rules.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/audit/rhel7cis_rule_4_1_9.rules.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/chrony.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/chrony.conf.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/etc/issue.j2: -------------------------------------------------------------------------------- 1 | {{ rhel7cis_warning_banner }} 2 | -------------------------------------------------------------------------------- /LinuxCis/templates/etc/issue.net.j2: -------------------------------------------------------------------------------- 1 | {{ rhel7cis_warning_banner }} 2 | -------------------------------------------------------------------------------- /LinuxCis/templates/etc/motd.j2: -------------------------------------------------------------------------------- 1 | {{ rhel7cis_warning_banner }} 2 | -------------------------------------------------------------------------------- /LinuxCis/templates/hosts.allow.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/hosts.allow.j2 -------------------------------------------------------------------------------- /LinuxCis/templates/ntp.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/LinuxCis/templates/ntp.conf.j2 -------------------------------------------------------------------------------- /Nginx/.ansible-lint: -------------------------------------------------------------------------------- 1 | skip_list: 2 | - '106' 3 | -------------------------------------------------------------------------------- /Nginx/.gitignore: -------------------------------------------------------------------------------- 1 | *.retry 2 | */__pycache__ 3 | *.pyc 4 | -------------------------------------------------------------------------------- /Nginx/.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/.yamllint -------------------------------------------------------------------------------- /Nginx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/LICENSE -------------------------------------------------------------------------------- /Nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/README.md -------------------------------------------------------------------------------- /Nginx/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/defaults/main.yml -------------------------------------------------------------------------------- /Nginx/files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/files/index.html -------------------------------------------------------------------------------- /Nginx/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/handlers/main.yml -------------------------------------------------------------------------------- /Nginx/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/tasks/main.yml -------------------------------------------------------------------------------- /Nginx/tasks/setup-Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/tasks/setup-Debian.yml -------------------------------------------------------------------------------- /Nginx/tasks/setup-RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/tasks/setup-RedHat.yml -------------------------------------------------------------------------------- /Nginx/tasks/setup-Ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/tasks/setup-Ubuntu.yml -------------------------------------------------------------------------------- /Nginx/tasks/vhosts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/tasks/vhosts.yml -------------------------------------------------------------------------------- /Nginx/templates/nginx.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/templates/nginx.conf.j2 -------------------------------------------------------------------------------- /Nginx/templates/vhost.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/templates/vhost.j2 -------------------------------------------------------------------------------- /Nginx/vars/Debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/vars/Debian.yml -------------------------------------------------------------------------------- /Nginx/vars/RedHat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Nginx/vars/RedHat.yml -------------------------------------------------------------------------------- /Parameters/infrastructure-ssm-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Parameters/infrastructure-ssm-parameters.json -------------------------------------------------------------------------------- /Parameters/kms-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Parameters/kms-params.json -------------------------------------------------------------------------------- /Parameters/nginx-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Parameters/nginx-config.json -------------------------------------------------------------------------------- /Parameters/nginx-image-builder-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Parameters/nginx-image-builder-params.json -------------------------------------------------------------------------------- /Parameters/s3-iam-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Parameters/s3-iam-config.json -------------------------------------------------------------------------------- /Parameters/vpc-endpoint-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Parameters/vpc-endpoint-params.json -------------------------------------------------------------------------------- /Parameters/vpc-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Parameters/vpc-params.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/README.md -------------------------------------------------------------------------------- /Templates/infrastructure-ssm-params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Templates/infrastructure-ssm-params.yml -------------------------------------------------------------------------------- /Templates/kms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Templates/kms.yml -------------------------------------------------------------------------------- /Templates/nginx-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Templates/nginx-config.yml -------------------------------------------------------------------------------- /Templates/nginx-image-builder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Templates/nginx-image-builder.yml -------------------------------------------------------------------------------- /Templates/s3-iam-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Templates/s3-iam-config.yml -------------------------------------------------------------------------------- /Templates/vpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/deploy-cis-level-1-hardened-ami-with-ec2-image-builder-pipeline/HEAD/Templates/vpc.yml --------------------------------------------------------------------------------