-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
31 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,35 @@ Description: AWS Free Tier Stack helps you set up all the basics you need to saf | |
Transform: 'AWS::LanguageExtensions' | ||
AWSTemplateFormatVersion: 2010-09-09 | ||
|
||
|
||
Metadata: | ||
Source: | ||
Description: "https://github.com/yannickvr/aws-free-tier-stack" | ||
|
||
AWS::CloudFormation::Interface: | ||
ParameterGroups: | ||
- Label: | ||
default: "Email Configuration" | ||
Parameters: | ||
- Label: | ||
default: "Budget Configuration" | ||
Parameters: | ||
- DailyBudgetAmount | ||
ParameterLabels: | ||
Email: | ||
default: "Email addresses to receive budget alerts. Comma separated, e.g. '[email protected],[email protected]'" | ||
DailyBudgetAmount: | ||
default: "Daily Budget amount to receive alerts for, in dollars" | ||
|
||
Parameters: | ||
Email: | ||
Type: CommaDelimitedList | ||
Description: Email addresses to receive budget alerts, comma separated | ||
Description: "Email addresses:" | ||
Default: '[email protected]' | ||
DailyBudgetAmount: | ||
Type: Number | ||
Description: Daily Budget amount to receive alerts for | ||
Description: "Daily Budget:" | ||
Default: 1 | ||
|
||
Conditions: | ||
|