Skip to content

Commit

Permalink
fix: non public module (#11)
Browse files Browse the repository at this point in the history
* (update): waf version

* (update): CHANGELOG
  • Loading branch information
xshot9011 committed Oct 5, 2022
1 parent 76da3a2 commit cc162d7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this module will be documented in this file.

## [1.0.6] - 2022-10-05

### Changed

- Update module `module.waf` to new public version

## [1.0.5] - 2022-08-17

### Changed
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ module "cloudfront_distribution" {

## Modules

| Name | Source | Version |
|-----------------------------------------------|--------------------------------------------|---------|
| <a name="module_waf"></a> [waf](#module\_waf) | git@github.com:oozou/terraform-aws-waf.git | v1.0.2 |
| Name | Source | Version |
|-----------------------------------------------|---------------|---------|
| <a name="module_waf"></a> [waf](#module\_waf) | oozou/waf/aws | 1.0.2 |

## Resources

Expand Down
7 changes: 5 additions & 2 deletions waf.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
module "waf" {
count = var.is_enable_waf ? 1 : 0
source = "git@github.com:oozou/terraform-aws-waf.git?ref=v1.0.2"
source = "oozou/waf/aws"
version = "1.0.2"

count = var.is_enable_waf ? 1 : 0

name = var.name
prefix = var.prefix
scope = "CLOUDFRONT"
Expand Down

0 comments on commit cc162d7

Please sign in to comment.