Skip to content

jsiebens/terraform-google-inlets-iap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

inlets PRO and Google Cloud Identity-Aware Proxy

This repo contains a Terraform Module for how to deploy an inlets PRO exit-node, protected with Cloud Identity-Aware Proxy, on GCP using Terraform.

What's a Terraform Module?

A Terraform Module refers to a self-contained packages of Terraform configurations that are managed as a group. This repo is a Terraform Module and contains many "submodules" which can be composed together to create useful infrastructure patterns.

How do you use this module?

This repository defines a Terraform module, which you can use in your code by adding a module configuration and setting its source parameter to URL of this repository:

module "postgresql" {
  source     = "../"
  name       = "postgresql"
  zone       = var.zone
  network    = google_compute_network.inlets.name
  subnetwork = google_compute_subnetwork.inlets.name
  ports      = [3306]
  members = [
    "user:jsiebens@gmail.com",
    "user:johan.siebens@gmail.com",
  ]
}

A complete example is available in the example folder.

Blog post

Control Access to your on-prem services with Cloud IAP and inlets PRO

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published