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

DeleteVPNServerWithContext failure occurring when attempting to destr… #4758

Merged
merged 2 commits into from
Sep 11, 2023

Conversation

SunithaGudisagarIBM1
Copy link
Contributor

Community Note

  • Please vote on this pull request by adding a 👍 reaction to the original pull request comment to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for pull request followers and do not help prioritize the request

Relates OR Closes #4722

resource "ibm_is_vpc" "testacc_vpc" {
  name = "sunitha-vpc"
}

resource "ibm_is_subnet" "testacc_subnet-1" {
  name            = "sunitha-subnet"
  vpc             = ibm_is_vpc.testacc_vpc.id
  zone            = "us-south-1"
  ipv4_cidr_block = "10.240.0.0/24"
}

resource "ibm_is_vpn_server" "is_vpn_server" {
  certificate_crn = "crn:v1:bluemix:public:secrets-manager:us-south:a/1431ea2a7958ad20f0fee592ff85f746:2f504783-548b-4a8e-85ba-6a8df9c62a1f:secret:02e468cc-4d04-a489-fee7-321076e1edd5"
  client_authentication {
    method        = "certificate"
    client_ca_crn = "crn:v1:bluemix:public:secrets-manager:us-south:a/1431ea2a7958ad20f0fee592ff85f746:2f504783-548b-4a8e-85ba-6a8df9c62a1f:secret:a4d68b7c-cb92-6b35-f1d4-c7b6c339e3ff"
  }
  client_ip_pool        = "10.5.0.0/21"
  subnets               = [ibm_is_subnet.testacc_subnet-1.id]
  client_dns_server_ips = ["192.168.3.4"]
  client_idle_timeout   = 2076
  /* enable_split_tunneling = %s */
  name     = "sunitha-vpc-server-test"
  port     = 8781
  protocol = "udp"
}
Screenshot 2023-08-08 at 11 34 50 AM Screenshot 2023-08-08 at 11 35 10 AM Screenshot 2023-08-08 at 11 35 24 AM Screenshot 2023-08-08 at 11 35 52 AM Screenshot 2023-08-08 at 11 36 03 AM

@ocofaigh
Copy link
Contributor

ocofaigh commented Sep 5, 2023

Hi folks, are we any closer to getting this merged?

@kavya498 kavya498 merged commit 7aa746f into IBM-Cloud:master Sep 11, 2023
@SunithaGudisagarIBM1 SunithaGudisagarIBM1 deleted the Bug-Fix-DeleteVPNServer branch November 19, 2023 06:53
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.

DeleteVPNServerWithContext failure occurring when attempting to destroy using ibm_is_vpn_server
3 participants