Simon Heather
Simon Heather
Still failing the Appveyor tests with the same error: ``` Multiple Script modules named 'ResourceSetHelper' are currently loaded. Make sure to remove any extra copies of the module from your...
From what I remember it works, but I don't use Sceptre any more, so won't be writing any tests, which is what I think was blocking this getting merged.
Can someone review this PR?
@mnotley-reward, can you confirm this resolved your issue?
Hi @meringu, it looks there are a lot of spurious changes included in this PR, `.gitignore`, `dockerfile`, a bunch of mock files. Can you remove the ones that are not...
Hi @rhariady, I don't think this is going to totally fix the issue, as if the ref does not match, it is going to retry then fall back to using...
Thanks for the response @byashimov. Can I suggest that documentation is added to the resource property detailing this, and even better would be warnings from the provider when this scenario...
HI @meenar-se, did you ever get your sample code to work? I've tried it on Elasticache redis/valkey serverless and non-severless and always get `ErrorReply: WRONGPASS invalid username-password pair or user...
I got it working using https://github.com/aws-samples/elasticache-iam-auth-demo-app as reference. Here is my updated code including serverless support: #### Configuration file: runtimeConfig.ts ```typescript import { fromNodeProviderChain } from '@aws-sdk/credential-providers'; import { NODE_REGION_CONFIG_FILE_OPTIONS,...
This change can be made simpler by using `env` and the `--split-string` option in the shebang. See https://www.gnu.org/software/coreutils/manual/html_node/env-invocation.html#g_t_002dS_002f_002d_002dsplit_002dstring-usage-in-scripts i.e. ```shell #!/usr/bin/env --split-string dumb-init --single-child /bin/sh ```