Maxime
Maxime
What is the difference between ```ts const url = getSignedUrl(client, putCommand, { ...options }); ``` and ```ts const presigner = new S3RequestPresigner({ region: '...', sha256: Hash.bind(null, 'sha256'), credentials: fromNodeProviderChain(), uriEscapePath:...
you cannot create an empty `newrelic_notification_destination` block, it's not a valid resource. ``` resource "newrelic_notification_destination" "slack-imported-destination" {} ``` > Too few blocks specified for "property": At least 1 block(s) are...
It seems that you cannot rename a slack destination. The import seems to have worked, but applying new name is failing with the error above. I wonder what is the...
I believe the workaround is to create a new slack destination manually in the UI with the name you want and import it again. If you don't want to delete...
I gave up spending more time trying to debug this error. It would have been a "nice to have" but not critical for what I needed. I just wanted to...
Ok, looking at the configuration I think the bundle is waiting for a `.pem` certificate To generate one from the `.p12` I had, I did the following: `openssl pkcs12 -in...
yes, but having the doc at the same place than the bundle or at least linking the doc in the bundle would have saved me a lot of time ;)
I'll submit a PR with documentation improvement ;)
Before sending a PR I just want to know if there is a way to set cURL options in the current bundle (even if I didn't see it).
In my case I had left this code in the layout.tsx which prevented loaded the custom `sign-in` / `sign-up` pages ```diff diff --git a/app/layout.tsx b/app/layout.tsx --- a/app/layout.tsx +++ b/app/layout.tsx @@...