├── .cfnlintrc ├── .github └── workflows │ └── stale.yml ├── .gitignore ├── .pylintrc ├── APIGateway ├── README.md ├── apigateway_lambda_integration.json ├── apigateway_lambda_integration.yaml └── handler.py ├── AWSSupplyChain └── SapPrivateLink │ ├── README.md │ ├── SapPrivateLink.json │ ├── SapPrivateLink.yaml │ ├── SapPrivateLinkNoHostedZone.json │ └── SapPrivateLinkNoHostedZone.yaml ├── AppRunner ├── AppRunnerServiceFromECR.json └── AppRunnerServiceFromECR.yaml ├── AutoScaling ├── AutoScalingMultiAZWithNotifications.json ├── AutoScalingMultiAZWithNotifications.yaml ├── AutoScalingRollingUpdates.json ├── AutoScalingRollingUpdates.yaml ├── AutoScalingScheduledAction.json └── AutoScalingScheduledAction.yaml ├── CloudFormation ├── CustomResources │ └── getfromjson │ │ ├── .coveragerc │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bandit.json │ │ ├── bandit.yml │ │ ├── example-templates │ │ └── getfromjson-consumer.yml │ │ ├── mypy.ini │ │ ├── requirements-dev.txt │ │ ├── run-local-invoke │ │ └── src │ │ ├── __init__.py │ │ ├── events │ │ ├── event-consume-from-list-retrieval-error.json │ │ ├── event-consume-from-list.json │ │ ├── event-consume-from-map-retrieval-error.json │ │ ├── event-consume-from-map.json │ │ ├── event-empty-json-data-input.json │ │ ├── event-empty-search-input.json │ │ ├── event-invalid-json-data-input.json │ │ └── event-invalid-search-input.json │ │ ├── getfromjson.py │ │ ├── getfromjson.yml │ │ ├── template.yml │ │ └── tests │ │ ├── __init__.py │ │ └── test_getfromjson.py ├── MacrosExamples │ ├── .cfnlintrc │ ├── Boto3 │ │ ├── README.md │ │ ├── example.json │ │ ├── example.yaml │ │ ├── lambda │ │ │ ├── custom_response.py │ │ │ ├── macro.py │ │ │ └── resource.py │ │ ├── macro.json │ │ └── macro.yaml │ ├── Count │ │ ├── README.md │ │ ├── deploy.sh │ │ ├── event.json │ │ ├── event_bad.json │ │ ├── requirements.txt │ │ ├── src │ │ │ ├── __init__.py │ │ │ └── index.py │ │ ├── template.json │ │ ├── template.yaml │ │ ├── test.json │ │ └── test.yaml │ ├── DateFunctions │ │ ├── README.md │ │ ├── date.json │ │ ├── date.yaml │ │ ├── date_example.json │ │ ├── date_example.yaml │ │ └── handler.py │ ├── DatetimeNow │ │ ├── README.md │ │ ├── datetimenow.json │ │ ├── datetimenow.yaml │ │ ├── datetimenow_example.json │ │ └── datetimenow_example.yaml │ ├── ExecutionRoleBuilder │ │ ├── README.md │ │ ├── example.json │ │ ├── example.yaml │ │ ├── lambda │ │ │ ├── index.py │ │ │ └── policytemplates.py │ │ ├── macro.json │ │ └── macro.yaml │ ├── Explode │ │ ├── .gitignore │ │ ├── README.md │ │ ├── lambda │ │ │ └── explode.py │ │ ├── macro.json │ │ ├── macro.yaml │ │ ├── test.json │ │ └── test.yaml │ ├── PyPlate │ │ ├── README.md │ │ ├── handler.py │ │ ├── python.json │ │ ├── python.yaml │ │ ├── python_example.json │ │ └── python_example.yaml │ ├── S3Objects │ │ ├── README.md │ │ ├── example.json │ │ ├── example.yaml │ │ ├── lambda │ │ │ ├── custom_response.py │ │ │ ├── macro.py │ │ │ └── resource.py │ │ ├── macro.json │ │ └── macro.yaml │ ├── StackMetrics │ │ ├── README.md │ │ ├── example.json │ │ ├── example.yaml │ │ ├── lambda │ │ │ ├── custom_response.py │ │ │ ├── index.py │ │ │ └── resource.py │ │ ├── macro.json │ │ └── macro.yaml │ └── StringFunctions │ │ ├── README.md │ │ ├── handler.py │ │ ├── string.json │ │ ├── string.yaml │ │ ├── string_example.json │ │ └── string_example.yaml ├── StackSets-CDK │ ├── .bandit │ ├── .coveragerc │ ├── .gitignore │ ├── .pylintrc │ ├── README.md │ ├── app.py │ ├── cdk.json │ ├── config.json │ ├── docs │ │ ├── general_diagram.png │ │ ├── pipeline.png │ │ ├── stack_instance.png │ │ ├── stackset.png │ │ └── stacksets_stack.png │ ├── prerequisites │ │ ├── deploy-admin-role.sh │ │ ├── deploy-execution-role.sh │ │ ├── stackset-administration-role.yaml │ │ └── stackset-execution-role.yaml │ ├── pytest.ini │ ├── requirements-dev.txt │ ├── requirements.txt │ ├── source.bat │ ├── stacksets_blog │ │ ├── __init__.py │ │ ├── config.py │ │ ├── monitoring_stack.py │ │ ├── pipeline_stack.py │ │ ├── stackset_stack.py │ │ └── utils.py │ └── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ └── unit │ │ ├── __init__.py │ │ ├── test_config.py │ │ ├── test_monitoring_stack.py │ │ ├── test_pipeline_stack.py │ │ ├── test_stackset_stack.py │ │ └── test_utils.py ├── StackSets │ ├── .gitignore │ ├── README.md │ ├── activate-trusted.png │ ├── build.sh │ ├── common-resources-pkg.json │ ├── common-resources-stackset-pkg.json │ ├── common-resources-stackset.json │ ├── common-resources-stackset.yaml │ ├── common-resources.json │ ├── common-resources.yaml │ ├── log-setup-management-pkg.json │ ├── log-setup-management.json │ ├── log-setup-management.yaml │ ├── log-setup-target-accounts.json │ ├── log-setup-target-accounts.yaml │ ├── stacksetslogging.png │ └── templates │ │ ├── common-resources-stackset.yaml │ │ └── log-setup-management.yaml ├── fn-foreach-ddb.json ├── fn-foreach-ddb.yaml ├── fn-foreach-s3-outputs.json └── fn-foreach-s3-outputs.yaml ├── CloudWatch ├── CloudWatch_Dashboard_ClientVPN.yml ├── CloudWatch_Dashboard_NAT_FlowLogs.json └── CloudWatch_Dashboard_NAT_FlowLogs.yaml ├── Config ├── Config.json └── Config.yaml ├── DMS ├── DMSAuroraToS3FullLoadAndOngoingReplication.json ├── DMSAuroraToS3FullLoadAndOngoingReplication.yaml └── README.md ├── DataFirehose └── DataFirehoseDeliveryStream.yaml ├── DataPipeline ├── DataPipeline-StringValue.json └── DataPipeline-StringValue.yaml ├── DirectoryService ├── DirectoryServiceMicrosoftAD.json ├── DirectoryServiceMicrosoftAD.yaml ├── DirectoryServiceSimpleAD.json └── DirectoryServiceSimpleAD.yaml ├── DynamoDB ├── DynamoDB_Secondary_Indexes.json ├── DynamoDB_Secondary_Indexes.yaml ├── DynamoDB_Table.json └── DynamoDB_Table.yaml ├── EC2 ├── EC2InstanceWithSecurityGroupSample.json ├── EC2InstanceWithSecurityGroupSample.yaml ├── EC2_Instance_With_Ephemeral_Drives.json ├── EC2_Instance_With_Ephemeral_Drives.yaml ├── EIP_With_Association.json ├── EIP_With_Association.yaml ├── InstanceWithCfnInit.json ├── InstanceWithCfnInit.yaml ├── SingleENIwithMultipleEIPs.json ├── SingleENIwithMultipleEIPs.yaml ├── ec2_with_waitcondition_template.json └── ec2_with_waitcondition_template.yaml ├── ECS ├── EC2LaunchType │ ├── clusters │ │ ├── private-vpc.json │ │ ├── private-vpc.yaml │ │ ├── public-vpc.json │ │ └── public-vpc.yaml │ └── services │ │ ├── private-service.json │ │ ├── private-service.yaml │ │ ├── public-service.json │ │ └── public-service.yaml ├── ECS_Schedule_Example.json ├── ECS_Schedule_Example.yaml ├── FargateLaunchType │ ├── clusters │ │ ├── private-vpc.json │ │ ├── private-vpc.yaml │ │ ├── public-vpc.json │ │ └── public-vpc.yaml │ └── services │ │ ├── private-subnet-private-service.json │ │ ├── private-subnet-private-service.yaml │ │ ├── private-subnet-public-service.json │ │ ├── private-subnet-public-service.yaml │ │ ├── public-service.json │ │ └── public-service.yaml ├── README.md └── images │ ├── private-task-private-loadbalancer.svg │ ├── private-task-public-loadbalancer.svg │ ├── private-task.png │ ├── public-task-public-loadbalancer.svg │ └── public-task.png ├── EFS ├── EFSAccessPoint.yaml ├── efs_with_automount_to_ec2.json └── efs_with_automount_to_ec2.yaml ├── EKS ├── README.md ├── eks_ec2_diagram.png ├── manifest.yml ├── template.json └── template.yaml ├── EMR ├── EMRCLusterGangliaWithSparkOrS3backedHbase.json ├── EMRCLusterGangliaWithSparkOrS3backedHbase.yaml ├── EMRClusterWithAdditionalSecurityGroups.json └── EMRClusterWithAdditionalSecurityGroups.yaml ├── ElastiCache ├── Elasticache-snapshot.json ├── Elasticache-snapshot.yaml └── elastic-code.js ├── ElasticLoadBalancing ├── ELBGuidedAutoScalingRollingUpgrade.json ├── ELBGuidedAutoScalingRollingUpgrade.yaml ├── ELBStickinessSample.json ├── ELBStickinessSample.yaml ├── ELBWithLockedDownAutoScaledInstances.json ├── ELBWithLockedDownAutoScaledInstances.yaml ├── ELB_Access_Logs_And_Connection_Draining.json ├── ELB_Access_Logs_And_Connection_Draining.yaml ├── NetworkLoadBalancerWithEIPs.json └── NetworkLoadBalancerWithEIPs.yaml ├── IoT ├── amzn2-greengrass-cfn-pkg.json ├── amzn2-greengrass-cfn-pkg.yaml ├── amzn2-greengrass-cfn.json ├── amzn2-greengrass-cfn.yaml ├── iotanalytics.json ├── iotanalytics.yaml ├── lambda-iot-topicrule.json ├── lambda-iot-topicrule.yaml └── reset_function.py ├── LICENSE.txt ├── Lambda ├── LambdaSample.json └── LambdaSample.yaml ├── NOTICE.txt ├── NeptuneDB ├── LICENSE.txt ├── Neptune.json ├── Neptune.yaml └── README.md ├── RDS ├── RDS_MySQL_With_Read_Replica.json ├── RDS_MySQL_With_Read_Replica.yaml ├── RDS_PIOPS.json ├── RDS_PIOPS.yaml ├── RDS_Snapshot_On_Delete.json ├── RDS_Snapshot_On_Delete.yaml ├── RDS_with_DBParameterGroup.json └── RDS_with_DBParameterGroup.yaml ├── README.md ├── RainModules ├── README.md ├── api-resource.yml ├── bucket-policy.yml ├── bucket.yml ├── cloudfront-nocache.yml ├── cognito.yml ├── load-balancer.yml ├── rest-api.yml ├── static-site.yml └── vpc.yml ├── S3 ├── S3_LambdaTrigger.json ├── S3_LambdaTrigger.yaml ├── compliant-bucket.json ├── compliant-bucket.yaml ├── compliant-static-website.json ├── compliant-static-website.yaml ├── s3-bucket-and-policy-for-caa-v1.json └── s3-bucket-and-policy-for-caa-v1.yaml ├── SNS ├── SNSTopic.json └── SNSTopic.yaml ├── SQS ├── SQSFIFOQueue.json ├── SQSFIFOQueue.yaml ├── SQSStandardQueue.json └── SQSStandardQueue.yaml ├── ServiceCatalog ├── LICENSE.txt ├── Portfolio.json ├── Portfolio.yaml ├── Product.json ├── Product.yaml └── README.md ├── Solutions ├── ADConnector │ ├── README.md │ ├── src │ │ ├── .gitignore │ │ ├── adconnector_custom_resource.py │ │ ├── package.sh │ │ └── requirements.txt │ └── templates │ │ ├── ADCONNECTOR.cfn.json │ │ └── ADCONNECTOR.cfn.yaml ├── AmazonCloudWatchAgent │ ├── README.md │ ├── inline │ │ ├── amazon_linux.json │ │ ├── amazon_linux.yaml │ │ ├── centos.json │ │ ├── centos.yaml │ │ ├── debian.json │ │ ├── debian.yaml │ │ ├── redhat.json │ │ ├── redhat.yaml │ │ ├── suse.json │ │ ├── suse.yaml │ │ ├── ubuntu.json │ │ ├── ubuntu.yaml │ │ ├── windows.json │ │ └── windows.yaml │ └── ssm │ │ ├── amazon_linux.json │ │ ├── amazon_linux.yaml │ │ ├── centos.json │ │ ├── centos.yaml │ │ ├── debian.json │ │ ├── debian.yaml │ │ ├── redhat.json │ │ ├── redhat.yaml │ │ ├── suse.json │ │ ├── suse.yaml │ │ ├── ubuntu.json │ │ ├── ubuntu.yaml │ │ ├── windows.json │ │ └── windows.yaml ├── CloudFormationEndpointSignals │ ├── README.md │ ├── cfn-endpoint-creationpolicy-no-igw.json │ ├── cfn-endpoint-creationpolicy-no-igw.yaml │ ├── cfn-endpoint-creationpolicy.json │ ├── cfn-endpoint-creationpolicy.yaml │ ├── cfn-endpoint-waitcondition-no-igw.json │ ├── cfn-endpoint-waitcondition-no-igw.yaml │ ├── cfn-endpoint-waitcondition.json │ └── cfn-endpoint-waitcondition.yaml ├── CloudFrontCustomOriginLambda@Edge │ ├── CloudFront.json │ ├── CloudFront.yaml │ ├── LICENSE.txt │ └── README.md ├── CodeBuildAndCodePipeline │ ├── cloudformation-codebuild-template.json │ ├── cloudformation-codebuild-template.yaml │ ├── cloudformation-codepipeline-template.json │ ├── cloudformation-codepipeline-template.yaml │ ├── codebuild-app-build.yml │ ├── codebuild-app-deploy.yml │ └── readme.md ├── DirectoryADClients │ ├── DIRECTORY-AD-CLIENTS.json │ ├── DIRECTORY-AD-CLIENTS.yaml │ └── README.md ├── DirectoryServiceSettings │ ├── README.md │ ├── src │ │ ├── directory_settings_custom_resource.py │ │ ├── package.sh │ │ └── requirements.txt │ └── templates │ │ ├── DIRECTORY_SETTINGS.cfn.json │ │ └── DIRECTORY_SETTINGS.cfn.yaml ├── EC2DomainJoin │ ├── EC2-Domain-Join.json │ ├── EC2-Domain-Join.yaml │ └── README.MD ├── GitLab │ ├── GitLabServer-pkg.json │ ├── GitLabServer-pkg.yaml │ ├── GitLabServer.json │ ├── GitLabServer.sh │ ├── GitLabServer.yaml │ └── README.md ├── GitLabAndVSCode │ ├── GitLabAndVSCode.json │ ├── GitLabAndVSCode.yaml │ ├── GitLabServer.sh │ └── VSCodeServer.sh ├── Gitea │ ├── Gitea-pkg.json │ ├── Gitea-pkg.yaml │ ├── Gitea.json │ ├── Gitea.sh │ ├── Gitea.yaml │ └── README.md ├── ManagedAD │ ├── README.md │ └── templates │ │ ├── MANAGEDAD.cfn.json │ │ └── MANAGEDAD.cfn.yaml ├── OperatingSystems │ ├── RHEL9_cfn-hup.json │ ├── RHEL9_cfn-hup.yaml │ ├── Ubuntu22.04_cfn-hup.json │ ├── Ubuntu22.04_cfn-hup.yaml │ ├── ubuntu20.04_cfn-hup.json │ └── ubuntu20.04_cfn-hup.yaml ├── S3CrossAccountReplicationWithKMS │ ├── README.md │ ├── images │ │ └── s3-replication-diagram.png │ └── templates │ │ ├── destination.json │ │ ├── destination.yaml │ │ ├── source.json │ │ └── source.yaml ├── TaggingRootVolumesInEC2 │ ├── README.md │ ├── Tagging_Root_volume.json │ └── Tagging_Root_volume.yaml ├── VPCFlowLogs │ ├── README.md │ └── templates │ │ ├── VPCFlowLogs-main.cfn.json │ │ ├── VPCFlowLogs-main.cfn.yaml │ │ ├── VPCFlowLogsCloudWatch.cfn.json │ │ ├── VPCFlowLogsCloudWatch.cfn.yaml │ │ ├── VPCFlowLogsS3.cfn.json │ │ └── VPCFlowLogsS3.cfn.yaml ├── VPCPeering │ ├── README.md │ └── templates │ │ ├── VPCPeering-Accepter-Role.cfn.json │ │ ├── VPCPeering-Accepter-Role.cfn.yaml │ │ ├── VPCPeering-Accepter-Tag.cfn.json │ │ ├── VPCPeering-Accepter-Tag.cfn.yaml │ │ ├── VPCPeering-Accepter.main.cfn.json │ │ ├── VPCPeering-Accepter.main.cfn.yaml │ │ ├── VPCPeering-Requester-Setup.cfn.json │ │ ├── VPCPeering-Requester-Setup.cfn.yaml │ │ ├── VPCPeering-Requester.main.cfn.json │ │ ├── VPCPeering-Requester.main.cfn.yaml │ │ ├── VPCPeering-Updates.cfn.json │ │ └── VPCPeering-Updates.cfn.yaml ├── VSCode │ ├── README.md │ ├── VSCodeServer-pkg.json │ ├── VSCodeServer-pkg.yaml │ ├── VSCodeServer.json │ ├── VSCodeServer.sh │ └── VSCodeServer.yaml └── WebApp │ ├── webapp.json │ └── webapp.yaml ├── VPC ├── FindInMapAZs.json ├── FindInMapAZs.yaml ├── VPC_EC2_Instance_With_Multiple_Static_IPAddresses.json ├── VPC_EC2_Instance_With_Multiple_Static_IPAddresses.yaml ├── VPC_With_Managed_NAT_And_Private_Subnet.json └── VPC_With_Managed_NAT_And_Private_Subnet.yaml └── scripts ├── create-json-all.sh ├── create-json-single.sh ├── format-yaml-all.sh ├── format-yaml-single.sh ├── guard-all.sh ├── guard-single.sh ├── lint-single.sh ├── rules.guard ├── test-all.sh └── test-single.sh /.cfnlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/.cfnlintrc -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/.pylintrc -------------------------------------------------------------------------------- /APIGateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/APIGateway/README.md -------------------------------------------------------------------------------- /APIGateway/apigateway_lambda_integration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/APIGateway/apigateway_lambda_integration.json -------------------------------------------------------------------------------- /APIGateway/apigateway_lambda_integration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/APIGateway/apigateway_lambda_integration.yaml -------------------------------------------------------------------------------- /APIGateway/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/APIGateway/handler.py -------------------------------------------------------------------------------- /AWSSupplyChain/SapPrivateLink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AWSSupplyChain/SapPrivateLink/README.md -------------------------------------------------------------------------------- /AWSSupplyChain/SapPrivateLink/SapPrivateLink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AWSSupplyChain/SapPrivateLink/SapPrivateLink.json -------------------------------------------------------------------------------- /AWSSupplyChain/SapPrivateLink/SapPrivateLink.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AWSSupplyChain/SapPrivateLink/SapPrivateLink.yaml -------------------------------------------------------------------------------- /AWSSupplyChain/SapPrivateLink/SapPrivateLinkNoHostedZone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AWSSupplyChain/SapPrivateLink/SapPrivateLinkNoHostedZone.json -------------------------------------------------------------------------------- /AWSSupplyChain/SapPrivateLink/SapPrivateLinkNoHostedZone.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AWSSupplyChain/SapPrivateLink/SapPrivateLinkNoHostedZone.yaml -------------------------------------------------------------------------------- /AppRunner/AppRunnerServiceFromECR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AppRunner/AppRunnerServiceFromECR.json -------------------------------------------------------------------------------- /AppRunner/AppRunnerServiceFromECR.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AppRunner/AppRunnerServiceFromECR.yaml -------------------------------------------------------------------------------- /AutoScaling/AutoScalingMultiAZWithNotifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AutoScaling/AutoScalingMultiAZWithNotifications.json -------------------------------------------------------------------------------- /AutoScaling/AutoScalingMultiAZWithNotifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AutoScaling/AutoScalingMultiAZWithNotifications.yaml -------------------------------------------------------------------------------- /AutoScaling/AutoScalingRollingUpdates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AutoScaling/AutoScalingRollingUpdates.json -------------------------------------------------------------------------------- /AutoScaling/AutoScalingRollingUpdates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AutoScaling/AutoScalingRollingUpdates.yaml -------------------------------------------------------------------------------- /AutoScaling/AutoScalingScheduledAction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AutoScaling/AutoScalingScheduledAction.json -------------------------------------------------------------------------------- /AutoScaling/AutoScalingScheduledAction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/AutoScaling/AutoScalingScheduledAction.yaml -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/.coveragerc -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | __pycache__/ 3 | .coverage 4 | -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/README.md -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/bandit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/bandit.json -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/bandit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/bandit.yml -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/example-templates/getfromjson-consumer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/example-templates/getfromjson-consumer.yml -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/mypy.ini -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/requirements-dev.txt -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/run-local-invoke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/run-local-invoke -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/events/event-consume-from-list-retrieval-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/events/event-consume-from-list-retrieval-error.json -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/events/event-consume-from-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/events/event-consume-from-list.json -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/events/event-consume-from-map-retrieval-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/events/event-consume-from-map-retrieval-error.json -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/events/event-consume-from-map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/events/event-consume-from-map.json -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/events/event-empty-json-data-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/events/event-empty-json-data-input.json -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/events/event-empty-search-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/events/event-empty-search-input.json -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/events/event-invalid-json-data-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/events/event-invalid-json-data-input.json -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/events/event-invalid-search-input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/events/event-invalid-search-input.json -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/getfromjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/getfromjson.py -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/getfromjson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/getfromjson.yml -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/template.yml -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CloudFormation/CustomResources/getfromjson/src/tests/test_getfromjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/CustomResources/getfromjson/src/tests/test_getfromjson.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/.cfnlintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/.cfnlintrc -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Boto3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Boto3/README.md -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Boto3/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Boto3/example.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Boto3/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Boto3/example.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Boto3/lambda/custom_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Boto3/lambda/custom_response.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Boto3/lambda/macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Boto3/lambda/macro.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Boto3/lambda/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Boto3/lambda/resource.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Boto3/macro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Boto3/macro.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Boto3/macro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Boto3/macro.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Count/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Count/README.md -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Count/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Count/deploy.sh -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Count/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Count/event.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Count/event_bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Count/event_bad.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Count/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.32.0 2 | -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Count/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Count/src/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Count/src/index.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Count/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Count/template.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Count/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Count/template.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Count/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Count/test.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Count/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Count/test.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/DateFunctions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/DateFunctions/README.md -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/DateFunctions/date.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/DateFunctions/date.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/DateFunctions/date.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/DateFunctions/date.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/DateFunctions/date_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/DateFunctions/date_example.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/DateFunctions/date_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/DateFunctions/date_example.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/DateFunctions/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/DateFunctions/handler.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/DatetimeNow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/DatetimeNow/README.md -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/DatetimeNow/datetimenow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/DatetimeNow/datetimenow.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/DatetimeNow/datetimenow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/DatetimeNow/datetimenow.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/DatetimeNow/datetimenow_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/DatetimeNow/datetimenow_example.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/DatetimeNow/datetimenow_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/DatetimeNow/datetimenow_example.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/ExecutionRoleBuilder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/ExecutionRoleBuilder/README.md -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/ExecutionRoleBuilder/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/ExecutionRoleBuilder/example.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/ExecutionRoleBuilder/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/ExecutionRoleBuilder/example.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/ExecutionRoleBuilder/lambda/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/ExecutionRoleBuilder/lambda/index.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/ExecutionRoleBuilder/lambda/policytemplates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/ExecutionRoleBuilder/lambda/policytemplates.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/ExecutionRoleBuilder/macro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/ExecutionRoleBuilder/macro.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/ExecutionRoleBuilder/macro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/ExecutionRoleBuilder/macro.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Explode/.gitignore: -------------------------------------------------------------------------------- 1 | packaged.yml 2 | -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Explode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Explode/README.md -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Explode/lambda/explode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Explode/lambda/explode.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Explode/macro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Explode/macro.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Explode/macro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Explode/macro.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Explode/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Explode/test.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/Explode/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/Explode/test.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/PyPlate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/PyPlate/README.md -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/PyPlate/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/PyPlate/handler.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/PyPlate/python.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/PyPlate/python.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/PyPlate/python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/PyPlate/python.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/PyPlate/python_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/PyPlate/python_example.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/PyPlate/python_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/PyPlate/python_example.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/S3Objects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/S3Objects/README.md -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/S3Objects/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/S3Objects/example.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/S3Objects/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/S3Objects/example.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/S3Objects/lambda/custom_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/S3Objects/lambda/custom_response.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/S3Objects/lambda/macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/S3Objects/lambda/macro.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/S3Objects/lambda/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/S3Objects/lambda/resource.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/S3Objects/macro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/S3Objects/macro.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/S3Objects/macro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/S3Objects/macro.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StackMetrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StackMetrics/README.md -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StackMetrics/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StackMetrics/example.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StackMetrics/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StackMetrics/example.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StackMetrics/lambda/custom_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StackMetrics/lambda/custom_response.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StackMetrics/lambda/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StackMetrics/lambda/index.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StackMetrics/lambda/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StackMetrics/lambda/resource.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StackMetrics/macro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StackMetrics/macro.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StackMetrics/macro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StackMetrics/macro.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StringFunctions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StringFunctions/README.md -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StringFunctions/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StringFunctions/handler.py -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StringFunctions/string.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StringFunctions/string.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StringFunctions/string.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StringFunctions/string.yaml -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StringFunctions/string_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StringFunctions/string_example.json -------------------------------------------------------------------------------- /CloudFormation/MacrosExamples/StringFunctions/string_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/MacrosExamples/StringFunctions/string_example.yaml -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/.bandit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/.bandit -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/.coveragerc -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/.gitignore -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/.pylintrc -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/README.md -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/app.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/cdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/cdk.json -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/config.json -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/docs/general_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/docs/general_diagram.png -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/docs/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/docs/pipeline.png -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/docs/stack_instance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/docs/stack_instance.png -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/docs/stackset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/docs/stackset.png -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/docs/stacksets_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/docs/stacksets_stack.png -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/prerequisites/deploy-admin-role.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/prerequisites/deploy-admin-role.sh -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/prerequisites/deploy-execution-role.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/prerequisites/deploy-execution-role.sh -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/prerequisites/stackset-administration-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/prerequisites/stackset-administration-role.yaml -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/prerequisites/stackset-execution-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/prerequisites/stackset-execution-role.yaml -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/pytest.ini -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/requirements-dev.txt -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/requirements.txt -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/source.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/source.bat -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/stacksets_blog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/stacksets_blog/__init__.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/stacksets_blog/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/stacksets_blog/config.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/stacksets_blog/monitoring_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/stacksets_blog/monitoring_stack.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/stacksets_blog/pipeline_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/stacksets_blog/pipeline_stack.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/stacksets_blog/stackset_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/stacksets_blog/stackset_stack.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/stacksets_blog/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/stacksets_blog/utils.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/tests/__init__.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/tests/conftest.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/tests/unit/__init__.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/tests/unit/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/tests/unit/test_config.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/tests/unit/test_monitoring_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/tests/unit/test_monitoring_stack.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/tests/unit/test_pipeline_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/tests/unit/test_pipeline_stack.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/tests/unit/test_stackset_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/tests/unit/test_stackset_stack.py -------------------------------------------------------------------------------- /CloudFormation/StackSets-CDK/tests/unit/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets-CDK/tests/unit/test_utils.py -------------------------------------------------------------------------------- /CloudFormation/StackSets/.gitignore: -------------------------------------------------------------------------------- 1 | *-pkg.yaml 2 | local/ 3 | 4 | -------------------------------------------------------------------------------- /CloudFormation/StackSets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/README.md -------------------------------------------------------------------------------- /CloudFormation/StackSets/activate-trusted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/activate-trusted.png -------------------------------------------------------------------------------- /CloudFormation/StackSets/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/build.sh -------------------------------------------------------------------------------- /CloudFormation/StackSets/common-resources-pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/common-resources-pkg.json -------------------------------------------------------------------------------- /CloudFormation/StackSets/common-resources-stackset-pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/common-resources-stackset-pkg.json -------------------------------------------------------------------------------- /CloudFormation/StackSets/common-resources-stackset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/common-resources-stackset.json -------------------------------------------------------------------------------- /CloudFormation/StackSets/common-resources-stackset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/common-resources-stackset.yaml -------------------------------------------------------------------------------- /CloudFormation/StackSets/common-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/common-resources.json -------------------------------------------------------------------------------- /CloudFormation/StackSets/common-resources.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/common-resources.yaml -------------------------------------------------------------------------------- /CloudFormation/StackSets/log-setup-management-pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/log-setup-management-pkg.json -------------------------------------------------------------------------------- /CloudFormation/StackSets/log-setup-management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/log-setup-management.json -------------------------------------------------------------------------------- /CloudFormation/StackSets/log-setup-management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/log-setup-management.yaml -------------------------------------------------------------------------------- /CloudFormation/StackSets/log-setup-target-accounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/log-setup-target-accounts.json -------------------------------------------------------------------------------- /CloudFormation/StackSets/log-setup-target-accounts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/log-setup-target-accounts.yaml -------------------------------------------------------------------------------- /CloudFormation/StackSets/stacksetslogging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/stacksetslogging.png -------------------------------------------------------------------------------- /CloudFormation/StackSets/templates/common-resources-stackset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/templates/common-resources-stackset.yaml -------------------------------------------------------------------------------- /CloudFormation/StackSets/templates/log-setup-management.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/StackSets/templates/log-setup-management.yaml -------------------------------------------------------------------------------- /CloudFormation/fn-foreach-ddb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/fn-foreach-ddb.json -------------------------------------------------------------------------------- /CloudFormation/fn-foreach-ddb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/fn-foreach-ddb.yaml -------------------------------------------------------------------------------- /CloudFormation/fn-foreach-s3-outputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/fn-foreach-s3-outputs.json -------------------------------------------------------------------------------- /CloudFormation/fn-foreach-s3-outputs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudFormation/fn-foreach-s3-outputs.yaml -------------------------------------------------------------------------------- /CloudWatch/CloudWatch_Dashboard_ClientVPN.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudWatch/CloudWatch_Dashboard_ClientVPN.yml -------------------------------------------------------------------------------- /CloudWatch/CloudWatch_Dashboard_NAT_FlowLogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudWatch/CloudWatch_Dashboard_NAT_FlowLogs.json -------------------------------------------------------------------------------- /CloudWatch/CloudWatch_Dashboard_NAT_FlowLogs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/CloudWatch/CloudWatch_Dashboard_NAT_FlowLogs.yaml -------------------------------------------------------------------------------- /Config/Config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Config/Config.json -------------------------------------------------------------------------------- /Config/Config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Config/Config.yaml -------------------------------------------------------------------------------- /DMS/DMSAuroraToS3FullLoadAndOngoingReplication.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DMS/DMSAuroraToS3FullLoadAndOngoingReplication.json -------------------------------------------------------------------------------- /DMS/DMSAuroraToS3FullLoadAndOngoingReplication.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DMS/DMSAuroraToS3FullLoadAndOngoingReplication.yaml -------------------------------------------------------------------------------- /DMS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DMS/README.md -------------------------------------------------------------------------------- /DataFirehose/DataFirehoseDeliveryStream.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DataFirehose/DataFirehoseDeliveryStream.yaml -------------------------------------------------------------------------------- /DataPipeline/DataPipeline-StringValue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DataPipeline/DataPipeline-StringValue.json -------------------------------------------------------------------------------- /DataPipeline/DataPipeline-StringValue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DataPipeline/DataPipeline-StringValue.yaml -------------------------------------------------------------------------------- /DirectoryService/DirectoryServiceMicrosoftAD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DirectoryService/DirectoryServiceMicrosoftAD.json -------------------------------------------------------------------------------- /DirectoryService/DirectoryServiceMicrosoftAD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DirectoryService/DirectoryServiceMicrosoftAD.yaml -------------------------------------------------------------------------------- /DirectoryService/DirectoryServiceSimpleAD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DirectoryService/DirectoryServiceSimpleAD.json -------------------------------------------------------------------------------- /DirectoryService/DirectoryServiceSimpleAD.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DirectoryService/DirectoryServiceSimpleAD.yaml -------------------------------------------------------------------------------- /DynamoDB/DynamoDB_Secondary_Indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DynamoDB/DynamoDB_Secondary_Indexes.json -------------------------------------------------------------------------------- /DynamoDB/DynamoDB_Secondary_Indexes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DynamoDB/DynamoDB_Secondary_Indexes.yaml -------------------------------------------------------------------------------- /DynamoDB/DynamoDB_Table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DynamoDB/DynamoDB_Table.json -------------------------------------------------------------------------------- /DynamoDB/DynamoDB_Table.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/DynamoDB/DynamoDB_Table.yaml -------------------------------------------------------------------------------- /EC2/EC2InstanceWithSecurityGroupSample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/EC2InstanceWithSecurityGroupSample.json -------------------------------------------------------------------------------- /EC2/EC2InstanceWithSecurityGroupSample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/EC2InstanceWithSecurityGroupSample.yaml -------------------------------------------------------------------------------- /EC2/EC2_Instance_With_Ephemeral_Drives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/EC2_Instance_With_Ephemeral_Drives.json -------------------------------------------------------------------------------- /EC2/EC2_Instance_With_Ephemeral_Drives.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/EC2_Instance_With_Ephemeral_Drives.yaml -------------------------------------------------------------------------------- /EC2/EIP_With_Association.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/EIP_With_Association.json -------------------------------------------------------------------------------- /EC2/EIP_With_Association.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/EIP_With_Association.yaml -------------------------------------------------------------------------------- /EC2/InstanceWithCfnInit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/InstanceWithCfnInit.json -------------------------------------------------------------------------------- /EC2/InstanceWithCfnInit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/InstanceWithCfnInit.yaml -------------------------------------------------------------------------------- /EC2/SingleENIwithMultipleEIPs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/SingleENIwithMultipleEIPs.json -------------------------------------------------------------------------------- /EC2/SingleENIwithMultipleEIPs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/SingleENIwithMultipleEIPs.yaml -------------------------------------------------------------------------------- /EC2/ec2_with_waitcondition_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/ec2_with_waitcondition_template.json -------------------------------------------------------------------------------- /EC2/ec2_with_waitcondition_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EC2/ec2_with_waitcondition_template.yaml -------------------------------------------------------------------------------- /ECS/EC2LaunchType/clusters/private-vpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/EC2LaunchType/clusters/private-vpc.json -------------------------------------------------------------------------------- /ECS/EC2LaunchType/clusters/private-vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/EC2LaunchType/clusters/private-vpc.yaml -------------------------------------------------------------------------------- /ECS/EC2LaunchType/clusters/public-vpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/EC2LaunchType/clusters/public-vpc.json -------------------------------------------------------------------------------- /ECS/EC2LaunchType/clusters/public-vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/EC2LaunchType/clusters/public-vpc.yaml -------------------------------------------------------------------------------- /ECS/EC2LaunchType/services/private-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/EC2LaunchType/services/private-service.json -------------------------------------------------------------------------------- /ECS/EC2LaunchType/services/private-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/EC2LaunchType/services/private-service.yaml -------------------------------------------------------------------------------- /ECS/EC2LaunchType/services/public-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/EC2LaunchType/services/public-service.json -------------------------------------------------------------------------------- /ECS/EC2LaunchType/services/public-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/EC2LaunchType/services/public-service.yaml -------------------------------------------------------------------------------- /ECS/ECS_Schedule_Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/ECS_Schedule_Example.json -------------------------------------------------------------------------------- /ECS/ECS_Schedule_Example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/ECS_Schedule_Example.yaml -------------------------------------------------------------------------------- /ECS/FargateLaunchType/clusters/private-vpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/FargateLaunchType/clusters/private-vpc.json -------------------------------------------------------------------------------- /ECS/FargateLaunchType/clusters/private-vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/FargateLaunchType/clusters/private-vpc.yaml -------------------------------------------------------------------------------- /ECS/FargateLaunchType/clusters/public-vpc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/FargateLaunchType/clusters/public-vpc.json -------------------------------------------------------------------------------- /ECS/FargateLaunchType/clusters/public-vpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/FargateLaunchType/clusters/public-vpc.yaml -------------------------------------------------------------------------------- /ECS/FargateLaunchType/services/private-subnet-private-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/FargateLaunchType/services/private-subnet-private-service.json -------------------------------------------------------------------------------- /ECS/FargateLaunchType/services/private-subnet-private-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/FargateLaunchType/services/private-subnet-private-service.yaml -------------------------------------------------------------------------------- /ECS/FargateLaunchType/services/private-subnet-public-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/FargateLaunchType/services/private-subnet-public-service.json -------------------------------------------------------------------------------- /ECS/FargateLaunchType/services/private-subnet-public-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/FargateLaunchType/services/private-subnet-public-service.yaml -------------------------------------------------------------------------------- /ECS/FargateLaunchType/services/public-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/FargateLaunchType/services/public-service.json -------------------------------------------------------------------------------- /ECS/FargateLaunchType/services/public-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/FargateLaunchType/services/public-service.yaml -------------------------------------------------------------------------------- /ECS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/README.md -------------------------------------------------------------------------------- /ECS/images/private-task-private-loadbalancer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/images/private-task-private-loadbalancer.svg -------------------------------------------------------------------------------- /ECS/images/private-task-public-loadbalancer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/images/private-task-public-loadbalancer.svg -------------------------------------------------------------------------------- /ECS/images/private-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/images/private-task.png -------------------------------------------------------------------------------- /ECS/images/public-task-public-loadbalancer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/images/public-task-public-loadbalancer.svg -------------------------------------------------------------------------------- /ECS/images/public-task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ECS/images/public-task.png -------------------------------------------------------------------------------- /EFS/EFSAccessPoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EFS/EFSAccessPoint.yaml -------------------------------------------------------------------------------- /EFS/efs_with_automount_to_ec2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EFS/efs_with_automount_to_ec2.json -------------------------------------------------------------------------------- /EFS/efs_with_automount_to_ec2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EFS/efs_with_automount_to_ec2.yaml -------------------------------------------------------------------------------- /EKS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EKS/README.md -------------------------------------------------------------------------------- /EKS/eks_ec2_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EKS/eks_ec2_diagram.png -------------------------------------------------------------------------------- /EKS/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EKS/manifest.yml -------------------------------------------------------------------------------- /EKS/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EKS/template.json -------------------------------------------------------------------------------- /EKS/template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EKS/template.yaml -------------------------------------------------------------------------------- /EMR/EMRCLusterGangliaWithSparkOrS3backedHbase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EMR/EMRCLusterGangliaWithSparkOrS3backedHbase.json -------------------------------------------------------------------------------- /EMR/EMRCLusterGangliaWithSparkOrS3backedHbase.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EMR/EMRCLusterGangliaWithSparkOrS3backedHbase.yaml -------------------------------------------------------------------------------- /EMR/EMRClusterWithAdditionalSecurityGroups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EMR/EMRClusterWithAdditionalSecurityGroups.json -------------------------------------------------------------------------------- /EMR/EMRClusterWithAdditionalSecurityGroups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/EMR/EMRClusterWithAdditionalSecurityGroups.yaml -------------------------------------------------------------------------------- /ElastiCache/Elasticache-snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElastiCache/Elasticache-snapshot.json -------------------------------------------------------------------------------- /ElastiCache/Elasticache-snapshot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElastiCache/Elasticache-snapshot.yaml -------------------------------------------------------------------------------- /ElastiCache/elastic-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElastiCache/elastic-code.js -------------------------------------------------------------------------------- /ElasticLoadBalancing/ELBGuidedAutoScalingRollingUpgrade.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElasticLoadBalancing/ELBGuidedAutoScalingRollingUpgrade.json -------------------------------------------------------------------------------- /ElasticLoadBalancing/ELBGuidedAutoScalingRollingUpgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElasticLoadBalancing/ELBGuidedAutoScalingRollingUpgrade.yaml -------------------------------------------------------------------------------- /ElasticLoadBalancing/ELBStickinessSample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElasticLoadBalancing/ELBStickinessSample.json -------------------------------------------------------------------------------- /ElasticLoadBalancing/ELBStickinessSample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElasticLoadBalancing/ELBStickinessSample.yaml -------------------------------------------------------------------------------- /ElasticLoadBalancing/ELBWithLockedDownAutoScaledInstances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElasticLoadBalancing/ELBWithLockedDownAutoScaledInstances.json -------------------------------------------------------------------------------- /ElasticLoadBalancing/ELBWithLockedDownAutoScaledInstances.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElasticLoadBalancing/ELBWithLockedDownAutoScaledInstances.yaml -------------------------------------------------------------------------------- /ElasticLoadBalancing/ELB_Access_Logs_And_Connection_Draining.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElasticLoadBalancing/ELB_Access_Logs_And_Connection_Draining.json -------------------------------------------------------------------------------- /ElasticLoadBalancing/ELB_Access_Logs_And_Connection_Draining.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElasticLoadBalancing/ELB_Access_Logs_And_Connection_Draining.yaml -------------------------------------------------------------------------------- /ElasticLoadBalancing/NetworkLoadBalancerWithEIPs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElasticLoadBalancing/NetworkLoadBalancerWithEIPs.json -------------------------------------------------------------------------------- /ElasticLoadBalancing/NetworkLoadBalancerWithEIPs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ElasticLoadBalancing/NetworkLoadBalancerWithEIPs.yaml -------------------------------------------------------------------------------- /IoT/amzn2-greengrass-cfn-pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/IoT/amzn2-greengrass-cfn-pkg.json -------------------------------------------------------------------------------- /IoT/amzn2-greengrass-cfn-pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/IoT/amzn2-greengrass-cfn-pkg.yaml -------------------------------------------------------------------------------- /IoT/amzn2-greengrass-cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/IoT/amzn2-greengrass-cfn.json -------------------------------------------------------------------------------- /IoT/amzn2-greengrass-cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/IoT/amzn2-greengrass-cfn.yaml -------------------------------------------------------------------------------- /IoT/iotanalytics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/IoT/iotanalytics.json -------------------------------------------------------------------------------- /IoT/iotanalytics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/IoT/iotanalytics.yaml -------------------------------------------------------------------------------- /IoT/lambda-iot-topicrule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/IoT/lambda-iot-topicrule.json -------------------------------------------------------------------------------- /IoT/lambda-iot-topicrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/IoT/lambda-iot-topicrule.yaml -------------------------------------------------------------------------------- /IoT/reset_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/IoT/reset_function.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Lambda/LambdaSample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Lambda/LambdaSample.json -------------------------------------------------------------------------------- /Lambda/LambdaSample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Lambda/LambdaSample.yaml -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /NeptuneDB/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/NeptuneDB/LICENSE.txt -------------------------------------------------------------------------------- /NeptuneDB/Neptune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/NeptuneDB/Neptune.json -------------------------------------------------------------------------------- /NeptuneDB/Neptune.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/NeptuneDB/Neptune.yaml -------------------------------------------------------------------------------- /NeptuneDB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/NeptuneDB/README.md -------------------------------------------------------------------------------- /RDS/RDS_MySQL_With_Read_Replica.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RDS/RDS_MySQL_With_Read_Replica.json -------------------------------------------------------------------------------- /RDS/RDS_MySQL_With_Read_Replica.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RDS/RDS_MySQL_With_Read_Replica.yaml -------------------------------------------------------------------------------- /RDS/RDS_PIOPS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RDS/RDS_PIOPS.json -------------------------------------------------------------------------------- /RDS/RDS_PIOPS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RDS/RDS_PIOPS.yaml -------------------------------------------------------------------------------- /RDS/RDS_Snapshot_On_Delete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RDS/RDS_Snapshot_On_Delete.json -------------------------------------------------------------------------------- /RDS/RDS_Snapshot_On_Delete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RDS/RDS_Snapshot_On_Delete.yaml -------------------------------------------------------------------------------- /RDS/RDS_with_DBParameterGroup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RDS/RDS_with_DBParameterGroup.json -------------------------------------------------------------------------------- /RDS/RDS_with_DBParameterGroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RDS/RDS_with_DBParameterGroup.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/README.md -------------------------------------------------------------------------------- /RainModules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RainModules/README.md -------------------------------------------------------------------------------- /RainModules/api-resource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RainModules/api-resource.yml -------------------------------------------------------------------------------- /RainModules/bucket-policy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RainModules/bucket-policy.yml -------------------------------------------------------------------------------- /RainModules/bucket.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RainModules/bucket.yml -------------------------------------------------------------------------------- /RainModules/cloudfront-nocache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RainModules/cloudfront-nocache.yml -------------------------------------------------------------------------------- /RainModules/cognito.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RainModules/cognito.yml -------------------------------------------------------------------------------- /RainModules/load-balancer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RainModules/load-balancer.yml -------------------------------------------------------------------------------- /RainModules/rest-api.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RainModules/rest-api.yml -------------------------------------------------------------------------------- /RainModules/static-site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RainModules/static-site.yml -------------------------------------------------------------------------------- /RainModules/vpc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/RainModules/vpc.yml -------------------------------------------------------------------------------- /S3/S3_LambdaTrigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/S3/S3_LambdaTrigger.json -------------------------------------------------------------------------------- /S3/S3_LambdaTrigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/S3/S3_LambdaTrigger.yaml -------------------------------------------------------------------------------- /S3/compliant-bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/S3/compliant-bucket.json -------------------------------------------------------------------------------- /S3/compliant-bucket.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/S3/compliant-bucket.yaml -------------------------------------------------------------------------------- /S3/compliant-static-website.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/S3/compliant-static-website.json -------------------------------------------------------------------------------- /S3/compliant-static-website.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/S3/compliant-static-website.yaml -------------------------------------------------------------------------------- /S3/s3-bucket-and-policy-for-caa-v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/S3/s3-bucket-and-policy-for-caa-v1.json -------------------------------------------------------------------------------- /S3/s3-bucket-and-policy-for-caa-v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/S3/s3-bucket-and-policy-for-caa-v1.yaml -------------------------------------------------------------------------------- /SNS/SNSTopic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/SNS/SNSTopic.json -------------------------------------------------------------------------------- /SNS/SNSTopic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/SNS/SNSTopic.yaml -------------------------------------------------------------------------------- /SQS/SQSFIFOQueue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/SQS/SQSFIFOQueue.json -------------------------------------------------------------------------------- /SQS/SQSFIFOQueue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/SQS/SQSFIFOQueue.yaml -------------------------------------------------------------------------------- /SQS/SQSStandardQueue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/SQS/SQSStandardQueue.json -------------------------------------------------------------------------------- /SQS/SQSStandardQueue.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/SQS/SQSStandardQueue.yaml -------------------------------------------------------------------------------- /ServiceCatalog/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ServiceCatalog/LICENSE.txt -------------------------------------------------------------------------------- /ServiceCatalog/Portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ServiceCatalog/Portfolio.json -------------------------------------------------------------------------------- /ServiceCatalog/Portfolio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ServiceCatalog/Portfolio.yaml -------------------------------------------------------------------------------- /ServiceCatalog/Product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ServiceCatalog/Product.json -------------------------------------------------------------------------------- /ServiceCatalog/Product.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ServiceCatalog/Product.yaml -------------------------------------------------------------------------------- /ServiceCatalog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/ServiceCatalog/README.md -------------------------------------------------------------------------------- /Solutions/ADConnector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/ADConnector/README.md -------------------------------------------------------------------------------- /Solutions/ADConnector/src/.gitignore: -------------------------------------------------------------------------------- 1 | .package 2 | adconnector_custom_resource.zip 3 | 4 | -------------------------------------------------------------------------------- /Solutions/ADConnector/src/adconnector_custom_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/ADConnector/src/adconnector_custom_resource.py -------------------------------------------------------------------------------- /Solutions/ADConnector/src/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/ADConnector/src/package.sh -------------------------------------------------------------------------------- /Solutions/ADConnector/src/requirements.txt: -------------------------------------------------------------------------------- 1 | # DEPENDENCIES 2 | crhelper 3 | -------------------------------------------------------------------------------- /Solutions/ADConnector/templates/ADCONNECTOR.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/ADConnector/templates/ADCONNECTOR.cfn.json -------------------------------------------------------------------------------- /Solutions/ADConnector/templates/ADCONNECTOR.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/ADConnector/templates/ADCONNECTOR.cfn.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/README.md -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/amazon_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/amazon_linux.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/amazon_linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/amazon_linux.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/centos.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/centos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/centos.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/debian.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/debian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/debian.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/redhat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/redhat.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/redhat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/redhat.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/suse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/suse.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/suse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/suse.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/ubuntu.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/ubuntu.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/windows.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/inline/windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/inline/windows.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/amazon_linux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/amazon_linux.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/amazon_linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/amazon_linux.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/centos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/centos.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/centos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/centos.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/debian.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/debian.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/debian.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/debian.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/redhat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/redhat.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/redhat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/redhat.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/suse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/suse.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/suse.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/suse.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/ubuntu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/ubuntu.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/ubuntu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/ubuntu.yaml -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/windows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/windows.json -------------------------------------------------------------------------------- /Solutions/AmazonCloudWatchAgent/ssm/windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/AmazonCloudWatchAgent/ssm/windows.yaml -------------------------------------------------------------------------------- /Solutions/CloudFormationEndpointSignals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFormationEndpointSignals/README.md -------------------------------------------------------------------------------- /Solutions/CloudFormationEndpointSignals/cfn-endpoint-creationpolicy-no-igw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFormationEndpointSignals/cfn-endpoint-creationpolicy-no-igw.json -------------------------------------------------------------------------------- /Solutions/CloudFormationEndpointSignals/cfn-endpoint-creationpolicy-no-igw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFormationEndpointSignals/cfn-endpoint-creationpolicy-no-igw.yaml -------------------------------------------------------------------------------- /Solutions/CloudFormationEndpointSignals/cfn-endpoint-creationpolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFormationEndpointSignals/cfn-endpoint-creationpolicy.json -------------------------------------------------------------------------------- /Solutions/CloudFormationEndpointSignals/cfn-endpoint-creationpolicy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFormationEndpointSignals/cfn-endpoint-creationpolicy.yaml -------------------------------------------------------------------------------- /Solutions/CloudFormationEndpointSignals/cfn-endpoint-waitcondition-no-igw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFormationEndpointSignals/cfn-endpoint-waitcondition-no-igw.json -------------------------------------------------------------------------------- /Solutions/CloudFormationEndpointSignals/cfn-endpoint-waitcondition-no-igw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFormationEndpointSignals/cfn-endpoint-waitcondition-no-igw.yaml -------------------------------------------------------------------------------- /Solutions/CloudFormationEndpointSignals/cfn-endpoint-waitcondition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFormationEndpointSignals/cfn-endpoint-waitcondition.json -------------------------------------------------------------------------------- /Solutions/CloudFormationEndpointSignals/cfn-endpoint-waitcondition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFormationEndpointSignals/cfn-endpoint-waitcondition.yaml -------------------------------------------------------------------------------- /Solutions/CloudFrontCustomOriginLambda@Edge/CloudFront.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFrontCustomOriginLambda@Edge/CloudFront.json -------------------------------------------------------------------------------- /Solutions/CloudFrontCustomOriginLambda@Edge/CloudFront.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFrontCustomOriginLambda@Edge/CloudFront.yaml -------------------------------------------------------------------------------- /Solutions/CloudFrontCustomOriginLambda@Edge/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFrontCustomOriginLambda@Edge/LICENSE.txt -------------------------------------------------------------------------------- /Solutions/CloudFrontCustomOriginLambda@Edge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CloudFrontCustomOriginLambda@Edge/README.md -------------------------------------------------------------------------------- /Solutions/CodeBuildAndCodePipeline/cloudformation-codebuild-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CodeBuildAndCodePipeline/cloudformation-codebuild-template.json -------------------------------------------------------------------------------- /Solutions/CodeBuildAndCodePipeline/cloudformation-codebuild-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CodeBuildAndCodePipeline/cloudformation-codebuild-template.yaml -------------------------------------------------------------------------------- /Solutions/CodeBuildAndCodePipeline/cloudformation-codepipeline-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CodeBuildAndCodePipeline/cloudformation-codepipeline-template.json -------------------------------------------------------------------------------- /Solutions/CodeBuildAndCodePipeline/cloudformation-codepipeline-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CodeBuildAndCodePipeline/cloudformation-codepipeline-template.yaml -------------------------------------------------------------------------------- /Solutions/CodeBuildAndCodePipeline/codebuild-app-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CodeBuildAndCodePipeline/codebuild-app-build.yml -------------------------------------------------------------------------------- /Solutions/CodeBuildAndCodePipeline/codebuild-app-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CodeBuildAndCodePipeline/codebuild-app-deploy.yml -------------------------------------------------------------------------------- /Solutions/CodeBuildAndCodePipeline/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/CodeBuildAndCodePipeline/readme.md -------------------------------------------------------------------------------- /Solutions/DirectoryADClients/DIRECTORY-AD-CLIENTS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/DirectoryADClients/DIRECTORY-AD-CLIENTS.json -------------------------------------------------------------------------------- /Solutions/DirectoryADClients/DIRECTORY-AD-CLIENTS.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/DirectoryADClients/DIRECTORY-AD-CLIENTS.yaml -------------------------------------------------------------------------------- /Solutions/DirectoryADClients/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/DirectoryADClients/README.md -------------------------------------------------------------------------------- /Solutions/DirectoryServiceSettings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/DirectoryServiceSettings/README.md -------------------------------------------------------------------------------- /Solutions/DirectoryServiceSettings/src/directory_settings_custom_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/DirectoryServiceSettings/src/directory_settings_custom_resource.py -------------------------------------------------------------------------------- /Solutions/DirectoryServiceSettings/src/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/DirectoryServiceSettings/src/package.sh -------------------------------------------------------------------------------- /Solutions/DirectoryServiceSettings/src/requirements.txt: -------------------------------------------------------------------------------- 1 | # DEPENDENCIES 2 | crhelper -------------------------------------------------------------------------------- /Solutions/DirectoryServiceSettings/templates/DIRECTORY_SETTINGS.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/DirectoryServiceSettings/templates/DIRECTORY_SETTINGS.cfn.json -------------------------------------------------------------------------------- /Solutions/DirectoryServiceSettings/templates/DIRECTORY_SETTINGS.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/DirectoryServiceSettings/templates/DIRECTORY_SETTINGS.cfn.yaml -------------------------------------------------------------------------------- /Solutions/EC2DomainJoin/EC2-Domain-Join.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/EC2DomainJoin/EC2-Domain-Join.json -------------------------------------------------------------------------------- /Solutions/EC2DomainJoin/EC2-Domain-Join.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/EC2DomainJoin/EC2-Domain-Join.yaml -------------------------------------------------------------------------------- /Solutions/EC2DomainJoin/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/EC2DomainJoin/README.MD -------------------------------------------------------------------------------- /Solutions/GitLab/GitLabServer-pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/GitLab/GitLabServer-pkg.json -------------------------------------------------------------------------------- /Solutions/GitLab/GitLabServer-pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/GitLab/GitLabServer-pkg.yaml -------------------------------------------------------------------------------- /Solutions/GitLab/GitLabServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/GitLab/GitLabServer.json -------------------------------------------------------------------------------- /Solutions/GitLab/GitLabServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/GitLab/GitLabServer.sh -------------------------------------------------------------------------------- /Solutions/GitLab/GitLabServer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/GitLab/GitLabServer.yaml -------------------------------------------------------------------------------- /Solutions/GitLab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/GitLab/README.md -------------------------------------------------------------------------------- /Solutions/GitLabAndVSCode/GitLabAndVSCode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/GitLabAndVSCode/GitLabAndVSCode.json -------------------------------------------------------------------------------- /Solutions/GitLabAndVSCode/GitLabAndVSCode.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/GitLabAndVSCode/GitLabAndVSCode.yaml -------------------------------------------------------------------------------- /Solutions/GitLabAndVSCode/GitLabServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/GitLabAndVSCode/GitLabServer.sh -------------------------------------------------------------------------------- /Solutions/GitLabAndVSCode/VSCodeServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/GitLabAndVSCode/VSCodeServer.sh -------------------------------------------------------------------------------- /Solutions/Gitea/Gitea-pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/Gitea/Gitea-pkg.json -------------------------------------------------------------------------------- /Solutions/Gitea/Gitea-pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/Gitea/Gitea-pkg.yaml -------------------------------------------------------------------------------- /Solutions/Gitea/Gitea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/Gitea/Gitea.json -------------------------------------------------------------------------------- /Solutions/Gitea/Gitea.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/Gitea/Gitea.sh -------------------------------------------------------------------------------- /Solutions/Gitea/Gitea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/Gitea/Gitea.yaml -------------------------------------------------------------------------------- /Solutions/Gitea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/Gitea/README.md -------------------------------------------------------------------------------- /Solutions/ManagedAD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/ManagedAD/README.md -------------------------------------------------------------------------------- /Solutions/ManagedAD/templates/MANAGEDAD.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/ManagedAD/templates/MANAGEDAD.cfn.json -------------------------------------------------------------------------------- /Solutions/ManagedAD/templates/MANAGEDAD.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/ManagedAD/templates/MANAGEDAD.cfn.yaml -------------------------------------------------------------------------------- /Solutions/OperatingSystems/RHEL9_cfn-hup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/OperatingSystems/RHEL9_cfn-hup.json -------------------------------------------------------------------------------- /Solutions/OperatingSystems/RHEL9_cfn-hup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/OperatingSystems/RHEL9_cfn-hup.yaml -------------------------------------------------------------------------------- /Solutions/OperatingSystems/Ubuntu22.04_cfn-hup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/OperatingSystems/Ubuntu22.04_cfn-hup.json -------------------------------------------------------------------------------- /Solutions/OperatingSystems/Ubuntu22.04_cfn-hup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/OperatingSystems/Ubuntu22.04_cfn-hup.yaml -------------------------------------------------------------------------------- /Solutions/OperatingSystems/ubuntu20.04_cfn-hup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/OperatingSystems/ubuntu20.04_cfn-hup.json -------------------------------------------------------------------------------- /Solutions/OperatingSystems/ubuntu20.04_cfn-hup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/OperatingSystems/ubuntu20.04_cfn-hup.yaml -------------------------------------------------------------------------------- /Solutions/S3CrossAccountReplicationWithKMS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/S3CrossAccountReplicationWithKMS/README.md -------------------------------------------------------------------------------- /Solutions/S3CrossAccountReplicationWithKMS/images/s3-replication-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/S3CrossAccountReplicationWithKMS/images/s3-replication-diagram.png -------------------------------------------------------------------------------- /Solutions/S3CrossAccountReplicationWithKMS/templates/destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/S3CrossAccountReplicationWithKMS/templates/destination.json -------------------------------------------------------------------------------- /Solutions/S3CrossAccountReplicationWithKMS/templates/destination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/S3CrossAccountReplicationWithKMS/templates/destination.yaml -------------------------------------------------------------------------------- /Solutions/S3CrossAccountReplicationWithKMS/templates/source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/S3CrossAccountReplicationWithKMS/templates/source.json -------------------------------------------------------------------------------- /Solutions/S3CrossAccountReplicationWithKMS/templates/source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/S3CrossAccountReplicationWithKMS/templates/source.yaml -------------------------------------------------------------------------------- /Solutions/TaggingRootVolumesInEC2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/TaggingRootVolumesInEC2/README.md -------------------------------------------------------------------------------- /Solutions/TaggingRootVolumesInEC2/Tagging_Root_volume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/TaggingRootVolumesInEC2/Tagging_Root_volume.json -------------------------------------------------------------------------------- /Solutions/TaggingRootVolumesInEC2/Tagging_Root_volume.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/TaggingRootVolumesInEC2/Tagging_Root_volume.yaml -------------------------------------------------------------------------------- /Solutions/VPCFlowLogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCFlowLogs/README.md -------------------------------------------------------------------------------- /Solutions/VPCFlowLogs/templates/VPCFlowLogs-main.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCFlowLogs/templates/VPCFlowLogs-main.cfn.json -------------------------------------------------------------------------------- /Solutions/VPCFlowLogs/templates/VPCFlowLogs-main.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCFlowLogs/templates/VPCFlowLogs-main.cfn.yaml -------------------------------------------------------------------------------- /Solutions/VPCFlowLogs/templates/VPCFlowLogsCloudWatch.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCFlowLogs/templates/VPCFlowLogsCloudWatch.cfn.json -------------------------------------------------------------------------------- /Solutions/VPCFlowLogs/templates/VPCFlowLogsCloudWatch.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCFlowLogs/templates/VPCFlowLogsCloudWatch.cfn.yaml -------------------------------------------------------------------------------- /Solutions/VPCFlowLogs/templates/VPCFlowLogsS3.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCFlowLogs/templates/VPCFlowLogsS3.cfn.json -------------------------------------------------------------------------------- /Solutions/VPCFlowLogs/templates/VPCFlowLogsS3.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCFlowLogs/templates/VPCFlowLogsS3.cfn.yaml -------------------------------------------------------------------------------- /Solutions/VPCPeering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/README.md -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Accepter-Role.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Accepter-Role.cfn.json -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Accepter-Role.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Accepter-Role.cfn.yaml -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Accepter-Tag.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Accepter-Tag.cfn.json -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Accepter-Tag.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Accepter-Tag.cfn.yaml -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Accepter.main.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Accepter.main.cfn.json -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Accepter.main.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Accepter.main.cfn.yaml -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Requester-Setup.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Requester-Setup.cfn.json -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Requester-Setup.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Requester-Setup.cfn.yaml -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Requester.main.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Requester.main.cfn.json -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Requester.main.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Requester.main.cfn.yaml -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Updates.cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Updates.cfn.json -------------------------------------------------------------------------------- /Solutions/VPCPeering/templates/VPCPeering-Updates.cfn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VPCPeering/templates/VPCPeering-Updates.cfn.yaml -------------------------------------------------------------------------------- /Solutions/VSCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VSCode/README.md -------------------------------------------------------------------------------- /Solutions/VSCode/VSCodeServer-pkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VSCode/VSCodeServer-pkg.json -------------------------------------------------------------------------------- /Solutions/VSCode/VSCodeServer-pkg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VSCode/VSCodeServer-pkg.yaml -------------------------------------------------------------------------------- /Solutions/VSCode/VSCodeServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VSCode/VSCodeServer.json -------------------------------------------------------------------------------- /Solutions/VSCode/VSCodeServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VSCode/VSCodeServer.sh -------------------------------------------------------------------------------- /Solutions/VSCode/VSCodeServer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/VSCode/VSCodeServer.yaml -------------------------------------------------------------------------------- /Solutions/WebApp/webapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/WebApp/webapp.json -------------------------------------------------------------------------------- /Solutions/WebApp/webapp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/Solutions/WebApp/webapp.yaml -------------------------------------------------------------------------------- /VPC/FindInMapAZs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/VPC/FindInMapAZs.json -------------------------------------------------------------------------------- /VPC/FindInMapAZs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/VPC/FindInMapAZs.yaml -------------------------------------------------------------------------------- /VPC/VPC_EC2_Instance_With_Multiple_Static_IPAddresses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/VPC/VPC_EC2_Instance_With_Multiple_Static_IPAddresses.json -------------------------------------------------------------------------------- /VPC/VPC_EC2_Instance_With_Multiple_Static_IPAddresses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/VPC/VPC_EC2_Instance_With_Multiple_Static_IPAddresses.yaml -------------------------------------------------------------------------------- /VPC/VPC_With_Managed_NAT_And_Private_Subnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/VPC/VPC_With_Managed_NAT_And_Private_Subnet.json -------------------------------------------------------------------------------- /VPC/VPC_With_Managed_NAT_And_Private_Subnet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/VPC/VPC_With_Managed_NAT_And_Private_Subnet.yaml -------------------------------------------------------------------------------- /scripts/create-json-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/scripts/create-json-all.sh -------------------------------------------------------------------------------- /scripts/create-json-single.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/scripts/create-json-single.sh -------------------------------------------------------------------------------- /scripts/format-yaml-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/scripts/format-yaml-all.sh -------------------------------------------------------------------------------- /scripts/format-yaml-single.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/scripts/format-yaml-single.sh -------------------------------------------------------------------------------- /scripts/guard-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/scripts/guard-all.sh -------------------------------------------------------------------------------- /scripts/guard-single.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/scripts/guard-single.sh -------------------------------------------------------------------------------- /scripts/lint-single.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/scripts/lint-single.sh -------------------------------------------------------------------------------- /scripts/rules.guard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/scripts/rules.guard -------------------------------------------------------------------------------- /scripts/test-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/scripts/test-all.sh -------------------------------------------------------------------------------- /scripts/test-single.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-cloudformation/aws-cloudformation-templates/HEAD/scripts/test-single.sh --------------------------------------------------------------------------------