This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "google_compute_global_address" "private_ip_address" { | |
provider = google-beta | |
project = var.project | |
name = "private-ip-address" | |
purpose = "VPC_PEERING" | |
address_type = "INTERNAL" | |
prefix_length = 16 | |
network = data.google_compute_network.network.id | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "google_datastream_private_connection" "default" { | |
project = var.project | |
display_name = "Private connection profile" | |
location = var.region | |
private_connection_id = "my-connection" | |
vpc_peering_config { | |
vpc = data.google_compute_network.network.id | |
subnet = "10.1.0.0/29" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
resource "google_compute_instance" "default" { | |
project = var.project | |
name = "datastream-proxy" | |
machine_type = var.proxy_machine_type | |
zone = var.zone | |
boot_disk { | |
initialize_params { | |
image = "debian-cloud/debian-11" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<nav class="navbar navbar-expand-custom navbar-mainbg"> | |
<a class="navbar-brand navbar-logo" href="#">Navbar</a> | |
<button class="navbar-toggler" type="button" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | |
<i class="fas fa-bars text-white"></i> | |
</button> | |
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | |
<ul class="navbar-nav ml-auto"> | |
<div class="hori-selector"><div class="left"></div><div class="right"></div></div> | |
<li class="nav-item"> | |
<a class="nav-link" href="javascript:void(0);"><i class="fas fa-tachometer-alt"></i>Dashboard</a> |
OlderNewer