- All the Networking deployed using Terraform.
Google Cloud Platform (GCP) networking provides a flexible and secure infrastructure. It includes Virtual Private Cloud (VPC) for creating isolated networks, global backbone for fast connectivity, load balancing for traffic distribution, VPN for secure connections, firewall and security measures, monitoring tools, and content delivery options for faster data access. Overall, GCP's networking offers scalability, reliability, and strong security features for cloud-based applications.
Configurations | Values |
---|---|
network_name | "prod-vpc" |
region | "us-west1" |
project_id | "icardio-prod-project" |
routing_mode | "GLOBAL" |
subnet_name (private) subnet_name (public) |
"prod-vpc-subnet-private-1" "prod-vpc-subnet-public-1" |
subnet_ip (private) subnet_ip (public) |
"10.30.0.0/24" "10.30.1.0/24" |
subnet_region | "us-west1" |
subnet_private_access (private) subnet_private_access (public) |
true false |
Firewall_rules | Values |
---|---|
name | "icardio-allow-all" |
priority | 10000 |
allow-protocol | tcp |
ports | ["1-65535"] |
ranges | "10.30.0.0/24", "10.30.1.0/24", "10.10.0.0/24", "10.10.1.0/24" |
We added the shared and prod subnetwork IPs to the aforementioned ranges for VPC peering.