-
Notifications
You must be signed in to change notification settings - Fork 7
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 #34 from fugue/improved-waivers
Improved waivers
- Loading branch information
Showing
829 changed files
with
95,590 additions
and
37,733 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
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
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 |
---|---|---|
@@ -1,10 +1,21 @@ | ||
|
||
resource "fugue_rule_waiver" "example" { | ||
name = "waive-FG_R00229" | ||
comment = "This S3 bucket is intentionally public" | ||
environment_id = fugue_aws_environment.test.id | ||
rule_id = "FG_R00229" | ||
resource_type = "AWS.S3.Bucket" | ||
name = "waive-FG_R00229" | ||
comment = "This S3 bucket is intentionally public" | ||
environment_id = fugue_aws_environment.test.id | ||
rule_id = "FG_R00229" | ||
resource_type = "AWS.S3.Bucket" | ||
resource_provider = "aws.us-east-1" | ||
resource_id = "my-public-s3-bucket" | ||
resource_id = "my-public-s3-bucket" | ||
} | ||
|
||
resource "fugue_rule_waiver" "tag_example" { | ||
name = "waive-FG_R00357" | ||
comment = "Ignore network ACL issues in development" | ||
environment_id = fugue_aws_environment.test.id | ||
rule_id = "FG_R00357" | ||
resource_type = "*" | ||
resource_provider = "*" | ||
resource_id = "*" | ||
resource_tag = "Environment:dev" | ||
} |
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
Oops, something went wrong.