Last active
August 6, 2019 18:47
-
-
Save xschildw/da8a46ffe254dd2fd8c1e3dbf9d4038b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: 2010-09-09 | |
| Description: >- | |
| Provision EC2 instance running Qualys scanner + associated role for auditor | |
| Parameters: | |
| AuditorAccountId: | |
| Description: AccountId of auditor | |
| Type: String | |
| AuditorStsExternalId: | |
| Description: ExternalId of auditor | |
| Type: String | |
| VpcName: | |
| Description: Name of VPC where the scanner instance was deployed | |
| Type: String | |
| ScannerInstanceIP: | |
| Description: IPv4 address of Qualys scanner instance | |
| Type: String | |
| Department: | |
| Description: The department for this resource (i.e. Computational Oncology) | |
| Type: String | |
| Project: | |
| Description: The name of the project that this resource is used for (i.e. Resilience) | |
| Type: String | |
| OwnerEmail: | |
| Description: The owner's email address for this resource (i.e. [email protected]) | |
| Type: String | |
| Resources: | |
| AWSIAMSecurityAuditRole: | |
| Type: "AWS::IAM::Role" | |
| Properties: | |
| AssumeRolePolicyDocument: | |
| Version: "2012-10-17" | |
| Statement: | |
| - | |
| Effect: Allow | |
| Principal: | |
| AWS: !Sub | |
| - arn:aws:iam::${acctId}:root | |
| - { acctId: !Ref AuditorAccountId } | |
| Action: | |
| - sts:AssumeRole | |
| Condition: { | |
| StringEquals: { | |
| 'sts:ExternalId': !Ref AuditorStsExternalId | |
| } | |
| } | |
| Path: "/" | |
| ManagedPolicyArns: | |
| - arn:aws:iam::aws:policy/SecurityAudit | |
| ScannedInstancesSecurityGroup: | |
| Type: 'AWS::EC2::SecurityGroup' | |
| Properties: | |
| GroupDescription: 'Open all ports for incoming traffic' | |
| VpcId: !ImportValue | |
| 'Fn::Sub': '${AWS::Region}-${VpcName}-VPCId' | |
| SecurityGroupIngress: | |
| - CidrIp: !Sub | |
| - ${ip}/32 | |
| - { ip: !Ref ScannerInstanceIP } | |
| FromPort: '-1' | |
| ToPort: '-1' | |
| IpProtocol: '-1' | |
| SecurityGroupEgress: | |
| - CidrIp: '0.0.0.0/0' | |
| FromPort: '-1' | |
| ToPort: '-1' | |
| IpProtocol: '-1' | |
| Outputs: | |
| SecurityGroup: | |
| Value: !Ref ScannedInstancesSecurityGroup | |
| Export: | |
| Name: !Sub '${AWS::Region}-${AWS::StackName}-ScanSecurityGroup' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| aws \ | |
| --profile synapsedev-iam-admin --region us-east-1 cloudformation create-stack --stack-name qualys-test \ | |
| --capabilities CAPABILITY_IAM \ | |
| --template-body file:///<path_to_secaudit_qualys_stack.yaml> \ | |
| --parameters \ | |
| ParameterKey=AuditorAccountId,ParameterValue= \ | |
| ParameterKey=AuditorStsExternalId,ParameterValue= \ | |
| ParameterKey=VpcName,ParameterValue= \ | |
| ParameterKey=ScannerInstanceIP,ParameterValue= \ | |
| ParameterKey=Department,ParameterValue= \ | |
| ParameterKey=Project,ParameterValue= \ | |
| ParameterKey=OwnerEmail,ParameterValue= |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment