Skip to content

Commit

Permalink
Merge pull request #43 from memes/fix/release_2.0.2_prep
Browse files Browse the repository at this point in the history
Chore: update module versions in examples to 2.0.2
  • Loading branch information
memes authored Nov 30, 2020
2 parents 000aa37 + a7d3631 commit 693aede
Show file tree
Hide file tree
Showing 24 changed files with 74 additions and 100 deletions.
30 changes: 24 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,45 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.0.2] and [1.3.2] - 2020-11-30

### Added

- Support custom domain names (issue #29)
- Support changing the base number and format specifier used when generating instance names (issue #24)
- Telemetry Streaming extension installed by default (issue #22)

### Changed

- Fixed bug installing RPM extensions on BIG-IP v15.1.1 and BIG-IP v15.1.2 (issue #18)
- Fixed bug when declaring complex 'allow-service' requirements (issue #25)
- Bumped Cloud Libraries, AS3, DO, and CFE extensions to latest (issue #22)

### Removed

## [2.0.1] and [1.3.1] - 2020-11-18

## Added
### Added

## Changed
### Changed

- Added Terraform 0.12/0.13 notice to main README

## Removed
### Removed

## [2.0.0] and [1.3.0] - 2020-11-18

> First of the parallel Terraform 0.13 and Terraform 0.12 specific releases.
## Added
### Added

## Changed
### Changed

- Enforcing Terraform 0.12.x or 0.13.x for 1.x and 2.x releases, respectively
- Bumped Google provider to 3.48.0
- Bumped Google IAM module to 6.4.0

## Removed
### Removed

## [1.2.2] - 2020-11-18

Expand Down Expand Up @@ -122,6 +138,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

[2.0.2]: https://github.com/memes/f5-google-terraform-modules/compare/v2.0.1...v2.0.2
[1.3.2]: https://github.com/memes/f5-google-terraform-modules/compare/v1.3.1...v1.3.2
[2.0.1]: https://github.com/memes/f5-google-terraform-modules/compare/v2.0.0...v2.0.1
[1.3.1]: https://github.com/memes/f5-google-terraform-modules/compare/v1.3.0...v1.3.1
[2.0.0]: https://github.com/memes/f5-google-terraform-modules/compare/v1.2.2...v2.0.0
Expand Down
9 changes: 3 additions & 6 deletions examples/cfe-2nic-fqdn/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a custom CFE role for BIG-IP service account
module "cfe_role" {
source = "memes/f5-bigip/google//modules/cfe-role"
version = "2.0.1"
version = "2.0.2"
target_type = "project"
target_id = var.project_id
members = [format("serviceAccount:%s", var.service_account)]
Expand All @@ -21,7 +21,7 @@ module "cfe_role" {
# Create a firewall rule to allow BIG-IP ConfigSync and failover
module "cfe_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.external_network
Expand Down Expand Up @@ -89,11 +89,8 @@ module "cfe_bucket" {
}

module "cfe" {
/* TODO: [email protected] - update with new module version
source = "memes/f5-bigip/google//modules/cfe"
version = "2.0.1"
*/
source = "../../modules/cfe/"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = [var.zone]
Expand Down
9 changes: 3 additions & 6 deletions examples/cfe-2nic-hex-offset-fqdn/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a custom CFE role for BIG-IP service account
module "cfe_role" {
source = "memes/f5-bigip/google//modules/cfe-role"
version = "2.0.1"
version = "2.0.2"
target_type = "project"
target_id = var.project_id
members = [format("serviceAccount:%s", var.service_account)]
Expand All @@ -21,7 +21,7 @@ module "cfe_role" {
# Create a firewall rule to allow BIG-IP ConfigSync and failover
module "cfe_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.external_network
Expand Down Expand Up @@ -89,11 +89,8 @@ module "cfe_bucket" {
}

module "cfe" {
/* TODO: [email protected] - update with new module version
source = "memes/f5-bigip/google//modules/cfe"
version = "2.0.1"
*/
source = "../../modules/cfe/"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = [var.zone]
Expand Down
9 changes: 3 additions & 6 deletions examples/cfe-2nic-multi-az/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a custom CFE role for BIG-IP service account
module "cfe_role" {
source = "memes/f5-bigip/google//modules/cfe-role"
version = "2.0.1"
version = "2.0.2"
target_type = "project"
target_id = var.project_id
members = [format("serviceAccount:%s", var.service_account)]
Expand All @@ -21,7 +21,7 @@ module "cfe_role" {
# Create a firewall rule to allow BIG-IP ConfigSync and failover
module "cfe_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.external_network
Expand Down Expand Up @@ -89,11 +89,8 @@ module "cfe_bucket" {
}

module "cfe" {
/* TODO: [email protected] - update with new module version
source = "memes/f5-bigip/google//modules/cfe"
version = "2.0.1"
*/
source = "../../modules/cfe/"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = var.zones
Expand Down
9 changes: 3 additions & 6 deletions examples/cfe-2nic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a custom CFE role for BIG-IP service account
module "cfe_role" {
source = "memes/f5-bigip/google//modules/cfe-role"
version = "2.0.1"
version = "2.0.2"
target_type = "project"
target_id = var.project_id
members = [format("serviceAccount:%s", var.service_account)]
Expand All @@ -21,7 +21,7 @@ module "cfe_role" {
# Create a firewall rule to allow BIG-IP ConfigSync and failover
module "cfe_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.external_network
Expand Down Expand Up @@ -85,11 +85,8 @@ module "cfe_bucket" {
}

module "cfe" {
/* TODO: [email protected] - update with new module version
source = "memes/f5-bigip/google//modules/cfe"
version = "2.0.1"
*/
source = "../../modules/cfe/"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = [var.zone]
Expand Down
9 changes: 3 additions & 6 deletions examples/cfe-3nic-fqdn-multi-az/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a custom CFE role for BIG-IP service account
module "cfe_role" {
source = "memes/f5-bigip/google//modules/cfe-role"
version = "2.0.1"
version = "2.0.2"
target_type = "project"
target_id = var.project_id
members = [format("serviceAccount:%s", var.service_account)]
Expand All @@ -21,7 +21,7 @@ module "cfe_role" {
# Create a firewall rule to allow BIG-IP ConfigSync and failover
module "cfe_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.internal_network
Expand Down Expand Up @@ -99,11 +99,8 @@ module "cfe_bucket" {
}

module "cfe" {
/* TODO: [email protected] - update with new module version
source = "memes/f5-bigip/google//modules/cfe"
version = "2.0.1"
*/
source = "../../modules/cfe/"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = var.zones
Expand Down
6 changes: 3 additions & 3 deletions examples/cfe-3nic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a custom CFE role for BIG-IP service account
module "cfe_role" {
source = "memes/f5-bigip/google//modules/cfe-role"
version = "2.0.1"
version = "2.0.2"
target_type = "project"
target_id = var.project_id
members = [format("serviceAccount:%s", var.service_account)]
Expand All @@ -21,7 +21,7 @@ module "cfe_role" {
# Create a firewall rule to allow BIG-IP ConfigSync and failover
module "cfe_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.internal_network
Expand Down Expand Up @@ -96,7 +96,7 @@ module "cfe_bucket" {

module "cfe" {
source = "memes/f5-bigip/google//modules/cfe"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = [var.zone]
Expand Down
7 changes: 2 additions & 5 deletions examples/ha-2nic-1-based-fqdn/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a firewall rule to allow BIG-IP ConfigSync
module "ha_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.external_network
Expand Down Expand Up @@ -44,11 +44,8 @@ resource "google_compute_address" "mgt" {
}

module "ha" {
/* TODO: [email protected]
source = "memes/f5-bigip/google//modules/ha"
version = "2.0.1"
*/
source = "../../modules/ha/"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = [var.zone]
Expand Down
7 changes: 2 additions & 5 deletions examples/ha-2nic-fqdn/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a firewall rule to allow BIG-IP ConfigSync
module "ha_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.external_network
Expand Down Expand Up @@ -44,11 +44,8 @@ resource "google_compute_address" "mgt" {
}

module "ha" {
/* TODO: [email protected]
source = "memes/f5-bigip/google//modules/ha"
version = "2.0.1"
*/
source = "../../modules/ha/"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = [var.zone]
Expand Down
7 changes: 2 additions & 5 deletions examples/ha-2nic-multi-az/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a firewall rule to allow BIG-IP ConfigSync
module "ha_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.external_network
Expand Down Expand Up @@ -44,11 +44,8 @@ resource "google_compute_address" "mgt" {
}

module "ha" {
/* TODO: [email protected]
source = "memes/f5-bigip/google//modules/ha"
version = "2.0.1"
*/
source = "../../modules/ha/"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = var.zones
Expand Down
7 changes: 2 additions & 5 deletions examples/ha-2nic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a firewall rule to allow BIG-IP ConfigSync
module "ha_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.external_network
Expand Down Expand Up @@ -40,11 +40,8 @@ resource "google_compute_address" "mgt" {
}

module "ha" {
/* TODO: [email protected]
source = "memes/f5-bigip/google//modules/ha"
version = "2.0.1"
*/
source = "../../modules/ha/"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = [var.zone]
Expand Down
7 changes: 2 additions & 5 deletions examples/ha-3nic-fqdn-multi-az/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a firewall rule to allow BIG-IP ConfigSync
module "ha_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.external_network
Expand Down Expand Up @@ -44,11 +44,8 @@ resource "google_compute_address" "mgt" {
}

module "ha" {
/* TODO: [email protected]
source = "memes/f5-bigip/google//modules/ha"
version = "2.0.1"
*/
source = "../../modules/ha/"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = var.zones
Expand Down
4 changes: 2 additions & 2 deletions examples/ha-3nic/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {
# Create a firewall rule to allow BIG-IP ConfigSync
module "ha_fw" {
source = "memes/f5-bigip/google//modules/configsync-fw"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
bigip_service_account = var.service_account
dataplane_network = var.internal_network
Expand Down Expand Up @@ -51,7 +51,7 @@ resource "google_compute_address" "int" {

module "ha" {
source = "memes/f5-bigip/google//modules/ha"
version = "2.0.1"
version = "2.0.2"
project_id = var.project_id
num_instances = var.num_instances
zones = [var.zone]
Expand Down
5 changes: 1 addition & 4 deletions examples/standalone-1nic-fqdn-multi-az/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ terraform {
}

module "instance" {
/* TODO [email protected]
source = "memes/f5-bigip/google"
version = "2.0.1"
*/
source = "../../"
version = "2.0.2"
project_id = var.project_id
zones = [var.zone]
service_account = var.service_account
Expand Down
5 changes: 1 addition & 4 deletions examples/standalone-1nic-metadata-admin-password/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,8 @@ terraform {
}

module "instance" {
/* TODO [email protected]
source = "memes/f5-bigip/google"
version = "2.0.1"
*/
source = "../../"
version = "2.0.2"
project_id = var.project_id
zones = [var.zone]
service_account = var.service_account
Expand Down
Loading

0 comments on commit 693aede

Please sign in to comment.