skip to Main Content

AWS ALB Health Check 404 – Apache

I have an ALB with 2 targets in the target group. However my health check aren't working properly. Both are showing "Health checks failed with these codes: [404]" My settings for the health check path are: /var/www/html/generic/website.com/healthcheck.php and if I…

VIEW QUESTION

user_data not getting executed over instance creation – Debian

I have provided an .sh file as user_data in my Terraform script: resource "aws_instance" "alpha-terraform"{ ami=var.amis[var.region] instance_type="t2.micro" vpc_security_group_ids=[aws_security_group.alpha-terraform-sg.id] user_data = file("user_data_bootstrap.sh") key_name = "alpha-terraform" tags={ type="alpha" purpose="terraform" } } The .sh file contains: #Jenkins Installation: sudo apt update sudo apt…

VIEW QUESTION
Back To Top
Search