Alex Wood

Results 21 comments of Alex Wood

For local testing, you can override env variables in a few ways, including the `--env-vars` parameter. However, in the `deploy` step, you're just passing along the packaged template. For that,...

We'll definitely want to improve documentation on the deploy difference, though I would agree we should at minimum converge options on build/local to match. One issue with deployments is that...

Something I'm noticing here: ``` "'https://${FrontEndDomainName}.${dnszone}'" ``` The inside of the string would thus be: ``` 'https://${FrontEndDomainName}.${dnszone}' ``` Is it intended to have two wrapping sets of quotes inside the...

Past this, it looks like we don't yet have built in support for Import Values for sam local - noting the feature request.

Is the goal behind this to run multiple stages in parallel on one stack, or just consistency? I believe this may have been an intentional design choice.

I can't reproduce this: ```shell sam init --runtime java8 --name java-hello-world cd java-hello-world sam build -u ``` Have you tested if your Docker containers have access to the internet generally?

Are you also having debugging issues, or is this just a difference in output text?

When looking over QLDB actions, I notice this lacks PartiQL permissions, some of which relate to document/item actions. Are these excluded intentionally?

Looking at https://docs.aws.amazon.com/qldb/latest/developerguide/security_iam_id-based-policy-examples.html#security_iam_id-based-policy-examples-read-write for example, I don't think that this policy would work as written. I'm going to look at an alternative version of this, and given our pivot to...

I'd like to understand a bit more about what you're trying to do - are you looking to change the name of the image during the build? The reason you're...