August 2019
Beginner
608 pages
16h 7m
English
The functional composition of the frontend servers is going to change a lot in this version of the infrastructure. The first instance will serve regular web UI traffic, the second will serve only API traffic, and a third instance will be created to handle Git-SSH traffic:
resource "aws_instance" "FRONTEND_C" { ami = "${lookup(var.aws_ubuntu_amis,var.region)}" subnet_id = "${aws_subnet.public-frontend_az-b.id}" key_name = "${aws_key_pair.keypair.key_name}" vpc_security_group_ids = ["${aws_security_group.SG-frontendservers.id}"] instance_type = "t2.medium" tags { Name = "${var.environment}-FRONTEND003" Environment = "${var.environment}" sshUser = "ubuntu" } }
On the middleware side of things, the amount of Sidekiq nodes is growing. ...
Read now
Unlock full access