From 66f683aff025960c2105a111da39fcc7322d0222 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 8 Aug 2023 13:42:21 -0500 Subject: [PATCH] chore(main): release 1.1.0 (#56) Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- versions.tf | 4 ++-- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d69084b..7e34f83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). This changelog is generated automatically based on [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/). +## [1.1.0](https://github.com/GoogleCloudPlatform/terraform-google-cloud-armor/compare/v1.0.0...v1.1.0) (2023-08-02) + + +### Features + +* add exclude_ip filter for threat intelligence ([#55](https://github.com/GoogleCloudPlatform/terraform-google-cloud-armor/issues/55)) ([b92b9a3](https://github.com/GoogleCloudPlatform/terraform-google-cloud-armor/commit/b92b9a3ad21684ff5b19ae9966518bd47dda8fe6)) + + +### Bug Fixes + +* fixed exclude_ip variable and change threat_intelligence_rules to object ([#57](https://github.com/GoogleCloudPlatform/terraform-google-cloud-armor/issues/57)) ([e7c4219](https://github.com/GoogleCloudPlatform/terraform-google-cloud-armor/commit/e7c4219a62e61917da321fe8a5b884ddb9ee2a96)) + ## [1.0.0](https://github.com/GoogleCloudPlatform/terraform-google-cloud-armor/compare/v0.3.0...v1.0.0) (2023-05-19) diff --git a/README.md b/README.md index b34679a..bf151a5 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ There are examples included in the [examples](https://github.com/GoogleCloudPlat ``` module "security_policy" { source = "GoogleCloudPlatform/cloud-armor/google" - version = "~> 1.0" + version = "~> 1.1" project_id = var.project_id name = "my-test-security-policy" diff --git a/versions.tf b/versions.tf index 9af58a0..891c591 100644 --- a/versions.tf +++ b/versions.tf @@ -27,9 +27,9 @@ terraform { } } provider_meta "google" { - module_name = "blueprints/terraform/terraform-google-cloud-armor/v1.0.0" + module_name = "blueprints/terraform/terraform-google-cloud-armor/v1.1.0" } provider_meta "google-beta" { - module_name = "blueprints/terraform/terraform-google-cloud-armor/v1.0.0" + module_name = "blueprints/terraform/terraform-google-cloud-armor/v1.1.0" } }