[A] Let's use Terraform to create an EC2 instance for Jenkins, Docker and SonarQube 1--main.tf resource "aws_instance" "web" { ami = "ami-0287a05f0ef0e9d9a" #change ami id for different region instance_type = "t2.large" key_name = "Linux-VM-Key7" #ch...