-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from zoitech/feature/add_guardduty
enable guard duty
- Loading branch information
Showing
3 changed files
with
23 additions
and
9 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 |
---|---|---|
@@ -1,22 +1,27 @@ | ||
## 0.0.5 (Unreleased) | ||
## 0.0.6 (Unreleased) | ||
|
||
NEW FEATURES: | ||
|
||
* Added new policies to prevent users causing huge costs | ||
* Created Changelog.md | ||
|
||
* n.a. | ||
|
||
BACKWARDS INCOMPATIBILITIES / NOTES: | ||
|
||
* n.a. | ||
|
||
|
||
IMPROVEMENTS: | ||
* n.a. | ||
|
||
* formatted tf-files | ||
BUG FIXES: | ||
* n.a. | ||
|
||
## 0.0.5 | ||
|
||
BUG FIXES: | ||
NEW FEATURES: | ||
* Support of GuardDuty (set ```guardduty_enable=1```) | ||
|
||
BACKWARDS INCOMPATIBILITIES / NOTES: | ||
* n.a. | ||
|
||
IMPROVEMENTS: | ||
* formatted tf-files | ||
|
||
BUG FIXES: | ||
* n.a. |
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,4 @@ | ||
resource "aws_guardduty_detector" "main" { | ||
enable = true | ||
count = "${var.guardduty_enable}" | ||
} |
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