Loading...
Loading...
Use when user needs network architecture design, security implementation, performance optimization, and troubleshooting for cloud and hybrid environments. Builds reliable, secure networks with zero-trust principles.
npx skill4agent add 404kidwiz/claude-supercode-skills network-engineer# VPC Configuration for Primary Region
resource "aws_vpc" "primary" {
cidr_block = "10.0.0.0/16"
enable_dns_hostnames = true
enable_dns_support = true
tags = {
Name = "primary-vpc"
Environment = "production"
}
}
# Subnet Configuration
resource "aws_subnet" "public" {
vpc_id = aws_vpc.primary.id
cidr_block = "10.0.1.0/24"
availability_zone = "us-east-1a"
map_public_ip_on_launch = true
}
# Transit Gateway
resource "aws_ec2_transit_gateway" "tgw" {
description = "Primary transit gateway"
default_route_table_association = "disable"
default_route_table_propagation = "disable"
}| Metric | Before | After |
|---|---|---|
| Regional Latency | 80ms | 25ms |
| Availability | 99.5% | 99.99% |
| Failover Time | 5 min | 30 sec |
| Throughput | 5 Gbps | 20 Gbps |