stdmn

Results 22 comments of stdmn

@ARolek Can you provide a brief example of how to do that? I've tried using the TEGOLA_CONFIG for AWS Lambda (pulling the config.toml file from a S3 Cloudfront distribution) and...

Looks like it may be a CORS issue based on this line: `Client.Timeout exceeded while awaiting headers.` Not sure exactly, though. ``` - 2019-06-17 14:24:03 [INFO] config.go:183: loading remote config...

Doh! You're right. Was able to connect directly to the S3 instance by allowing the VPC to connect to my S3 [endpoint](https://aws.amazon.com/blogs/aws/new-vpc-endpoint-for-amazon-s3/). Sorry for my ignorance and thanks again for...

@ARolek One related question, it seems that when I change the S3 config object but don't update the Lambda function, Lambda doesn't recognize that the config file has been changed...

UPDATE: seems that it's on the API Gateway (unsurprisingly): [https://stackoverflow.com/questions/39303410/can-aws-api-gateway-cache-invalidate-specific-entries-based-on-the-response-cont](https://stackoverflow.com/questions/39303410/can-aws-api-gateway-cache-invalidate-specific-entries-based-on-the-response-cont). Still working on a solution.

Sorry to hear that. Hope things are well. Thanks for the info! Will start digging into this. One thought on `--force-refresh-config`: I think that the best case scenario would be...

**For the file system**, you can grab the last modified date using: ``` fileInfo, err := os.Stat(path) lastMod := fileInfo.ModTime() ``` ([Documentation](https://learngolang.net/tutorials/how-to-get-file-info-in-go/) here) **For S3** (see full example [here](https://github.com/awsdocs/aws-doc-sdk-examples/blob/master/go/example_code/s3/s3_list_objects.go)): ```...

@ericfischer Quick follow-up on this: I'm trying to use AWS Lambda to, in realtime, update a tile directory on S3 (related: #776, #741) from a Postgres database. I've created an...

Awesome! I'll give it a go. If i can come up with a solid solution for a fully Lambda-hosted solution, I'll make a note for future users who are hoping...