Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 1.64 KB

readme1.md

File metadata and controls

30 lines (27 loc) · 1.64 KB

icardio | Networking - Prod

1. About

  • All the Networking deployed using Terraform.

2. Used of Services & Resources

2.1 Prod-Networking

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

2.2 Firewall rules used for networking.

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.

3. Reference code link:

Deployed Prod-networking Terraform code