-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow to pass parameter value for 'Enabled' property in ScheduledEvent of 'AWS::Serverless::Function' #1329
Comments
This is related to #1360 |
Thanks for the issue report! We have passed this along to our product team for possible prioritization. Please +1 on the feature to help with prioritization. |
It has been 10 months, when is this going to be fixed? Even |
@jfuss is this still under review? |
this is such a shame. you have a core feature broken, and nobody who's paid to work on it even cares. |
Same issue here, lost a few hours on troubleshooting this... |
Same here, what do you think @RichieRunner if we switch to the standard CloudFormation template (not SAM), should it be fine? |
That was the same conditional logic I had tried. @victor
…On Fri, Nov 27, 2020 at 1:36 AM Victor GRENU ***@***.***> wrote:
Since it's abundantly clear now that AWS and the maintainers of this
codebase are refusing to prioritize this to be a critical bug, what is
everyone's recommendation for disabling the Enabled flag if you are
building resources in NP?
I am trying to achieve this kind of conditional logic:
[image: image]
<https://user-images.githubusercontent.com/20289967/100397949-496e5480-3001-11eb-8c2a-8b8bdcf572b8.png>
Same here, what do you think @RichieRunner
<https://github.com/RichieRunner> if we switch to the standard
CloudFormation template (not SAM), should it be fine?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#1329 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AFODGAKIN3LZPGIC4YHHJYDSR5JGPANCNFSM4J3GXJOA>
.
|
@RichieRunner @z0ph @jwalsh2me thanks for bumping this issue and discussing workarounds. I've just now added this to the backlog internally, and I apologize that we struggle with communicating status on issues like this where there are internal and external trackers involved. Is there a workaround people have found for this particular issue? I was hoping for some cases like this that SAM CLI's recent addition of environments would help, but I can see why it fails here. |
A workaround would be much appreciated. I'm running into the same issue using the same Condition logic. |
FWIW, I have a bash script function workaround. It will remove the lambda CloudWatch Event rule trigger and disable the rule itself for SAM rules with the default serverlessrepo*. names. It should be easy to add parameters / variables to. I can't find an AWS CLI way to just disable a CloudWatch Event in the Lambda so I remove it. https://gist.github.com/jewelsjacobs/2ea1b37dd4db5279d038111e77d9d813 |
Thanks, so...you just run this as a last step in every build? 😖 |
Pretty much @RichieRunner 😞 |
+1 waiting for a fix |
@jwalsh2me I don't know what you're talking about |
I could work around this by adding a separate resource for AWS::Events::Rule and excluded 'Events' property from AWS::Serverless::Function. Example template:-
|
Ahh, that's smart! This is worth a try as well, thanks! |
It's working as a workaround. Thanks @nbrational |
Thank you @nbrational for the workaround. I think you also have to grant Events the permission to invoke the lambda, using AWS::Lambda::Permission resource :
|
Closing in on the 2 year mark with still no fix from the SAM team on this 🎉 |
Could we please get some attention on this? |
Hey all, I am moving through our backlog of PRs and this PR (#1666) was looking to address this. I am in the middle of updating it but realized a couple things, if you are using Intrinsic Functions as the value, this will break because SAM expects "true" or "false" while the underlying CFN resource uses "enabled" or "disabled". SAM's history with intrinsic functions are hit or miss. Mostly due to us needing to re-implement how CloudFormation handles these, as there is no library provided by CloudFormation. Instead of going down that path (which has a bunch of flaws/concerns), I am thinking about adding a new property that will be a passthrough to the underlying CloudFormation resource directly. This would require customers to change their templates but existing ones would behave the same and people running into issues (as described here) could be unblocked. Looking for some thoughts from the community on this. |
I like the idea of a new property! |
When you reference a parameter for 'Enabled' property in ScheduledEvent of 'AWS::Serverless::Function', it is not honoring the parameter value passed and setting the "State": "ENABLED" for Events::Rule in the processed template.
'Enabled' property in ScheduledEvent of 'AWS::Serverless::Function' currently only accepts 'true' or 'false' bool values hard-coded as string in template.
in the background when composing the processed template, 'AWS::Serverless-2016-10-31' transform sees:
You can reference the transform code here:
https://github.com/awslabs/serverless-application-model/blob/93b6ac0afb6f322e047d6e4c4887f0d829e54b88/samtranslator/model/eventsources/push.py#L113
Currently Serverless transform is not capable of reading the parameter value to set the 'State' of Event::Rule.
Please add support to parse the parameter value and set the 'State' property value to 'DISABLED' /'Enabled' accordingly.
The text was updated successfully, but these errors were encountered: