Posts

Showing posts with the label amazon-web-services

How do I set a TTL in an AWS SAM template for lambda?

How do I set a TTL in an AWS SAM template for lambda? Cloudformation has this feature where you can set a TTL which triggers a command that deletes the stack: https://aws.amazon.com/blogs/devops/scheduling-automatic-deletion-of-application-environments/ Is there a way to do something similar with AWS lambda SAM template? I want some dev lambdas to be automatically deleted after an expiration period I set. 1 Answer 1 AWS SAM is just syntactic sugar on top of CloudFormation. You can use arbitrary CloudFormation resources in SAM templates as well, so the linked solution should work the same way when using SAM. Just include the linked CloudFormation template in your SAM template. By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website...

AWS WorkMail pricing and use case advice

AWS WorkMail pricing and use case advice I am trying to set up managed emails for a client of mine (small business), they require 10 email addresses. A separate email for each person. Nothing fancy like G Suite - with it's google drive storage, etc. Just a plain, old fashioned email server for send text back and forth. My understanding is that it's $4USD per user per month. Does that mean the bill will be $40 in total per month? If so, is there a reason why it's so expensive/are there any alternative services that operate at a more affordable price point? Or could I set up one user with multiple inboxes? Say, user "admin" and multiple separate inboxes 1 Answer 1 Yes, that would be 40 USD total pr month for the WorkMail service. You could potentially setup a single inbox for one user with multiple email addresses and redirect mail into specific folders using rules. However, i wo...