cloud-foundation-fabric/modules/cloud-config-container/__need_fixing/onprem
Ludovico Magnocavallo 6941313c7d
Factories refactor (#1843)
* factories refactor doc

* Adds file schema and filesystem organization

* Update 20231106-factories.md

* move factories out of blueprints and create new factories  README

* align factory in billing-account module

* align factory in dataplex-datascan module

* align factory in billing-account module

* align factory in net-firewall-policy module

* align factory in dns-response-policy module

* align factory in net-vpc-firewall module

* align factory in net-vpc module

* align factory variable names in FAST

* remove decentralized firewall blueprint

* bump terraform version

* bump module versions

* update top-level READMEs

* move project factory to modules

* fix variable names and tests

* tfdoc

* remove changelog link

* add project factory to top-level README

* fix cludrun eventarc diff

* fix README

* fix cludrun eventarc diff

---------

Co-authored-by: Simone Ruffilli <sruffilli@google.com>
2024-02-26 10:16:52 +00:00
..
docker-images versions.tf maintenance + copyright notice bump (#1782) 2023-10-20 18:17:47 +02:00
Corefile Assorted module fixes (#1045) 2022-12-10 15:40:15 +01:00
README.md Fixes related to boot_disk in compute-vm module 2023-03-16 15:58:39 +01:00
cloud-config.yaml versions.tf maintenance + copyright notice bump (#1782) 2023-10-20 18:17:47 +02:00
main.tf Assorted module fixes (#1045) 2022-12-10 15:40:15 +01:00
outputs.tf Assorted module fixes (#1045) 2022-12-10 15:40:15 +01:00
static-vpn-gw-cloud-init.yaml versions.tf maintenance + copyright notice bump (#1782) 2023-10-20 18:17:47 +02:00
variables.tf Assorted module fixes (#1045) 2022-12-10 15:40:15 +01:00
versions.tf Factories refactor (#1843) 2024-02-26 10:16:52 +00:00

README.md

Containerized on-premises infrastructure

This module manages a cloud-config configuration that starts an emulated on-premises infrastructure running in Docker Compose on a single instance, and connects it via static or dynamic VPN to a Google Cloud VPN gateway.

The emulated on-premises infrastructure is composed of:

  • a Strongswan container managing the VPN tunnel to GCP
  • an optional Bird container managing the BGP session
  • a CoreDNS container servng local DNS and forwarding to GCP
  • an Nginx container serving a simple static web page
  • a generic Linux container used as a jump host inside the on-premises network

A complete scenario using this module is available in the networking blueprints.

The module renders the generated cloud config in the cloud_config output, to be used in instances or instance templates via the user-data metadata.

Examples

Static VPN

module "cloud-vpn" {
  source        = "./fabric/modules/net-vpn-static"
  project_id    = "my-project"
  region        = "europe-west1"
  network       = "my-vpc"
  name          = "to-on-prem"
  remote_ranges = ["192.168.192.0/24"]
  tunnels = {
    remote-0 = {
      peer_ip           = module.vm.external_ip
      traffic_selectors = { local = ["0.0.0.0/0"], remote = null }
    }
  }
}

module "on-prem" {
  source = "./fabric/modules/cloud-config-container/onprem"
  vpn_config = {
    type          = "static"
    peer_ip       = module.cloud-vpn.address
    shared_secret = module.cloud-vpn.random_secret
  }
}

module "vm" {
  source     = "./fabric/modules/compute-vm"
  project_id = "my-project"
  zone       = "europe-west8-b"
  name       = "cos-nginx-tls"
  network_interfaces = [{
    nat        = true
    network    = "default"
    subnetwork = "gce"
  }]
  metadata = {
    user-data              = module.on-prem.cloud_config
    google-logging-enabled = true
  }
  boot_disk = {
    initialize_params = {
      image = "projects/cos-cloud/global/images/family/cos-stable"
      type  = "pd-ssd"
      size  = 10
    }
  }
  tags = ["ssh"]
}
# tftest skip

Variables

name description type required default
vpn_config VPN configuration, type must be one of 'dynamic' or 'static'. object({…})
config_variables Additional variables used to render the cloud-config and CoreDNS templates. map(any) {}
coredns_config CoreDNS configuration path, if null default will be used. string null
local_ip_cidr_range IP CIDR range used for the Docker onprem network. string "192.168.192.0/24"
vpn_dynamic_config BGP configuration for dynamic VPN, ignored if VPN type is 'static'. object({…}) {…}
vpn_static_ranges Remote CIDR ranges for static VPN, ignored if VPN type is 'dynamic'. list(string) ["10.0.0.0/8"]

Outputs

name description sensitive
cloud_config Rendered cloud-config file to be passed as user-data instance metadata.