--- AWSTemplateFormatVersion: '2010-09-09' Description: 'Provides bootstrap configuration for VPN tunnels with the VM Series firewall template. The logic necessary to perform operations is handled by an ec2-backed custom resource. This was built in lieu of Lambda, not available in the GovCloud region. ' Parameters: QSS3BucketName: AllowedPattern: ^[0-9a-zA-Z]+([0-9a-zA-Z-]*[0-9a-zA-Z])*$ ConstraintDescription: Quick Start bucket name can include numbers, lowercase letters, uppercase letters, and hyphens (-). It cannot start or end with a hyphen (-). Default: aws-quickstart Description: S3 bucket name for the Quick Start assets. This string can include numbers, lowercase letters, uppercase letters, and hyphens (-). It cannot start or end with a hyphen (-). Type: String QSS3KeyPrefix: AllowedPattern: ^[0-9a-zA-Z-/]*$ ConstraintDescription: Quick Start key prefix can include numbers, lowercase letters, uppercase letters, hyphens (-), and forward slash (/). Default: quickstart-aws-eks/ Description: S3 key prefix for the Quick Start assets. Quick Start key prefix can include numbers, lowercase letters, uppercase letters, hyphens (-), and forward slash (/). Type: String Resources: rCustomResourcePipeline: Type: AWS::CloudFormation::Stack Properties: TemplateURL: Fn::Join: - '' - - !Ref pTemplateUrlPrefix - templates/custom-resource.template.yaml