-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new features and modified the current ones.
- Loading branch information
Showing
4 changed files
with
52 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Feature: Resources should be encrypted | ||
In order to improve security | ||
As engineers | ||
We'll enforce encryption | ||
|
||
Scenario: RDS instances | ||
When I define a AWS RDS instance | ||
Then encryption must be enabled | ||
|
||
Scenario: EC2 instance block devices | ||
When I define a AWS EC2 instance | ||
And it contains a ebs_block_device | ||
Then encryption must be enabled | ||
|
||
Scenario: EBS volumes | ||
When I define a AWS EBS volume | ||
Then encryption must be enabled |
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
Feature: Resources should be properly tagged | ||
In order to keep track of resource ownership | ||
As engineers | ||
We'll enforce tagging on all resources | ||
|
||
Scenario: Name tag | ||
When I define a resource that supports tags | ||
Then it must have the "Name" tag | ||
And its value must match the "darwin.*" regex | ||
|
||
Scenario: Environment tag | ||
When I define a resource that supports tags | ||
Then it must have the "Environment" tag | ||
And its value must be set by a variable | ||
|
||
Scenario: Project tag | ||
When I define a resource that supports tags | ||
Then it must have the "Project" tag | ||
And its value must match the "Darwin" regex | ||
|
||
Scenario: Service tag | ||
When I define a resource that supports tags | ||
Then it must have the "Service" tag | ||
And its value must match the "modelling|enhancement|routing|scoring" regex | ||
|
||
Scenario: Function tag | ||
When I define a resource that supports tags | ||
Then it must have the "Function" tag | ||
|
||
Scenario: Billing tag | ||
When I define a resource that supports tags | ||
Then it must have the "Billing" tag |