Passer au contenu principal
Menu
← BACK TO WORK

Intégration Prisma Cloud

Cloud Security Posture

Mise en conformité de l'infrastructure Cloud et détection des menaces.

ClientSup de Vinci
RoleIngénieur Sécurité Cloud
Year2024
StackPrisma Cloud, Terraform, Amazon Web Services, Python
Intégration Prisma Cloud

THE CHALLENGE

Automatiser la remédiation des vulnérabilités critiques sans impacter les environnements de production.

security-policy.tf
1
resource "aws_security_group" "web_server" {
2
  name        = "web-server-sg"
3
  description = "Security group for web servers"
4
 
5
  ingress {
6
    description = "HTTPS from anywhere"
7
    from_port   = 443
8
    to_port     = 443
9
    protocol    = "tcp"
10
    cidr_blocks = ["0.0.0.0/0"]
11
  }
12
 
13
  egress {
14
    from_port   = 0
15
    to_port     = 0
16
    protocol    = "-1"
17
    cidr_blocks = ["0.0.0.0/0"]
18
  }
19
 
20
  tags = {
21
    Name        = "web-server-sg"
22
    Environment = "production"
23
  }
24
}
Detail View

Explore More

All Projects