FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 63f1bf21 authored by Robin Goodall's avatar Robin Goodall :speech_balloon:
Browse files

Merge branch 'ignore-network-changes-in-vpc-connector' into 'master'

Ignore changes in vpc connector network

See merge request !47
parents 8a4aade6 8cf4713d
No related branches found
No related tags found
1 merge request!47Ignore changes in vpc connector network
Pipeline #177183 passed
...@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. ...@@ -4,6 +4,10 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [4.1.5] - 2022-03-30
### Added
- Ensure default -> null vpc_connector network changes are not applied on every deploy
## [4.1.4] - 2022-03-21 ## [4.1.4] - 2022-03-21
### Added ### Added
- Remove Beta launch stage flag that was required for referencing Secret Manager - Remove Beta launch stage flag that was required for referencing Secret Manager
......
...@@ -19,6 +19,12 @@ resource "google_vpc_access_connector" "static-ip-connector" { ...@@ -19,6 +19,12 @@ resource "google_vpc_access_connector" "static-ip-connector" {
} }
region = var.cloud_run_region region = var.cloud_run_region
lifecycle {
ignore_changes = [
network,
]
}
provider = google-beta provider = google-beta
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment