DEV Community

Cover image for AWS DevOps Project: Advanced Automated CI/CD Pipeline with Infrastructure as Code, Microservices, Service Mesh, and Monitoring

AWS DevOps Project: Advanced Automated CI/CD Pipeline with Infrastructure as Code, Microservices, Service Mesh, and Monitoring

Liquid syntax error: Unknown tag 'endraw'

Top comments (4)

Collapse
 
lockhead profile image
Johannes Koch

Thanks for sharing. Can you elaborate on the technology choices a bit - why Jenkins?!

And why deploy from local and not deploy from.... Gitlab, Github actions, etc?

Collapse
 
notharshhaa profile image
H A R S H H A A

Sure @lockhead we can use other ci tools

Collapse
 
lockhead profile image
Johannes Koch

I know. Why did you pick Jenkins?

Collapse
 
rwideman profile image
Robert Wideman • Edited

missing the aws_security_groups for both jenkins_sg and eks_sg, here are mine:

resource "aws_security_group" "jenkins_sg" {
vpc_id = aws_vpc.main_vpc.id
}
resource "aws_security_group" "eks_sg" {
vpc_id = aws_vpc.main_vpc.id
}