heroku_space_vpn_connection

Provides a resource for creating a VPN connection between a network and a Heroku Private Space. For more information, see Private Spaces VPN Connection in the Heroku DevCenter.

Example Usage

// Create a new Heroku space
resource "heroku_space" "default" {
  name         = "test-space"
  organization = "my-company"
  region       = "virginia"
}

// Connect the Heroku space to another network with a VPN
resource "heroku_space_vpn_connection" "office" {
  name           = "office"
  space          = heroku_space.default.id
  public_ip      = "203.0.113.1"
  routable_cidrs = ["192.168.1.0/24"]
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported: