Skip to content

Commit

Permalink
Merge pull request #243 from trussworks/fix-default-tags
Browse files Browse the repository at this point in the history
Remove Default Tags
  • Loading branch information
chtakahashi authored Nov 3, 2023
2 parents 9e20501 + 9f55ef1 commit 7248e47
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ No modules.
| s3\_bucket\_name | The name of the AWS S3 bucket. | `string` | n/a | yes |
| s3\_key\_prefix | S3 key prefix for CloudTrail logs | `string` | `"cloudtrail"` | no |
| sns\_topic\_arn | ARN of the SNS topic for notification of log file delivery. | `string` | `""` | no |
| tags | A mapping of tags to CloudTrail resources. | `map(string)` | ```{ "Automation": "Terraform" }``` | no |
| tags | A mapping of tags to CloudTrail resources. | `map(string)` | `{}` | no |
| trail\_name | Name for the Cloudtrail | `string` | `"cloudtrail"` | no |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ variable "sns_topic_arn" {

variable "tags" {
description = "A mapping of tags to CloudTrail resources."
default = { Automation = "Terraform" }
default = {}
type = map(string)
}

0 comments on commit 7248e47

Please sign in to comment.