splunk / splunk-aws-project-trumpet

MIT License
95 stars 31 forks source link

Several regions for the VPCFirehoseProcessor Lambdas are missing #38

Closed faleon closed 3 years ago

faleon commented 3 years ago

The following mappings and S3 buckets are missing:

"af-south-1": {
"BucketName": "trumpet-splunk-prod-af-south-1"
},
"ap-east-1": {
"BucketName": "trumpet-splunk-prod-ap-east-1"
},
"ap-northeast-3": {
"BucketName": "trumpet-splunk-prod-ap-northeast-3"
},
"eu-north-1": {
"BucketName": "trumpet-splunk-prod-eu-north-1"
},
"eu-south-1": {
"BucketName": "trumpet-splunk-prod-eu-south-1"
},
"me-south-1": {
"BucketName": "trumpet-splunk-prod-me-south-1"
}

These buckets are needed to support the following Trumpet resource:

"VPCFirehoseProcessor": {
            "Type": "AWS::Lambda::Function",
            "Properties": {
                "Code": {
                    "S3Bucket": {
                        "Fn::FindInMap": [
                            "BucketMap",
                            {
                                "Ref": "AWS::Region"
                            },
                            "BucketName"
                        ]
                    },
                    "S3Key": "splunk_vpc_firehose_processor_v0.4.zip"
                }
anushjay commented 3 years ago

Thanks @faleon We will work on adding these other regions.