ignition_gan_settings Resource

ignition_gan_settings (Resource)

Manages General Gateway Network Settings. This is a singleton resource.

Example Usage

resource "ignition_gan_settings" "example" {
  require_ssl                    = true
  require_two_way_auth           = false
  allow_incoming                 = true
  security_policy                = "ApprovedOnly"
  websocket_session_idle_timeout = 60000
}

Schema

Optional

  • allow_incoming (Boolean) If false, only outward connections will be allowed.
  • allowed_proxy_hops (Number)
  • description (String)
  • enabled (Boolean)
  • name (String) Internal name for the resource (fixed to ‘gateway-network-settings’).
  • require_ssl (Boolean) If true, only connections that use SSL will be allowed.
  • require_two_way_auth (Boolean) Enforces two-way SSL authentication.
  • security_policy (String) Dictates what connections are allowed (Unrestricted, ApprovedOnly, SpecifiedList).
  • temp_files_max_age_hours (Number)
  • websocket_session_idle_timeout (Number)
  • whitelist (String) Comma-separated list of Gateway names allowed to connect if security_policy is SpecifiedList.

Read-Only

  • id (String) The ID of this resource.
  • signature (String)