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

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

    }
@ivayloivanov388 ivayloivanov388 requested review from imrannayer and a team as code owners August 21, 2024 08:15
@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

Copy link

This PR is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 7 days

@github-actions github-actions bot added the Stale label Oct 27, 2024
@github-actions github-actions bot closed this Nov 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants