Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Add lifecycle to prevent changes when shared secret is updated #164

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ivayloivanov388
Copy link

Add lifecycle to the VPN in order to prevent VPN replacement due to shared secrets being pulled by data resource from GCP Secrets Manager

<= data "google_secret_manager_secret_version" xxx" {
+ create_time = (known after apply)
+ destroy_time = (known after apply)
+ enabled = (known after apply)
+ id = (known after apply)
+ name = (known after apply)
+ secret_data = (sensitive value)
+ version = (known after apply)
}

-/+ resource "google_compute_vpn_tunnel" "tunnels" {
~ creation_timestamp = "2022-05-03T00:23:06.875-07:00" -> (known after apply)
~ detailed_status = "Tunnel is up and running." -> (known after apply)
~ label_fingerprint = "gYs4vEHLW2w=" -> (known after apply)
~ local_traffic_selector = [
- "0.0.0.0/0",
] -> (known after apply)
- peer_external_gateway_interface = 0 -> null
~ remote_traffic_selector = [
- "0.0.0.0/0",
] -> (known after apply)
~ shared_secret = (sensitive value) # forces replacement

}

Add lifecycle to the VPN in order to prevent VPN replacement due to shared secrets being pulled by data resource from GCP Secrets Manager

 <= data "google_secret_manager_secret_version" xxx" {
      + create_time  = (known after apply)
      + destroy_time = (known after apply)
      + enabled      = (known after apply)
      + id           = (known after apply)
      + name         = (known after apply)
      + secret_data  = (sensitive value)
      + version      = (known after apply)
    }

-/+ resource "google_compute_vpn_tunnel" "tunnels" {
      ~ creation_timestamp              = "2022-05-03T00:23:06.875-07:00" -> (known after apply)
      ~ detailed_status                 = "Tunnel is up and running." -> (known after apply)
      ~ label_fingerprint               = "gYs4vEHLW2w=" -> (known after apply)
      ~ local_traffic_selector          = [
          - "0.0.0.0/0",
        ] -> (known after apply)
      - peer_external_gateway_interface = 0 -> null
      ~ remote_traffic_selector         = [
          - "0.0.0.0/0",
        ] -> (known after apply)
      ~ shared_secret                   = (sensitive value) # forces replacement

    }
@imrannayer imrannayer changed the title Add lifecycle to prevent changes when shared secret is updated fix: Add lifecycle to prevent changes when shared secret is updated Aug 28, 2024
@imrannayer
Copy link
Collaborator

@ivayloivanov388 thx for the PR. Can you plz fix lint test? Follow this doc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants