Creating new server, resuing same AMI from previous TF streamlit instance
This commit is contained in:
@@ -0,0 +1,159 @@
|
||||
resource "aws_lb" "app_lb" {
|
||||
# name = ""
|
||||
# Using global prefix from main.tf for name of the load balancer
|
||||
name = "${local.global_prefix}-load-balancer"
|
||||
internal = false
|
||||
load_balancer_type = "application"
|
||||
security_groups = [aws_security_group.lb_sg.id]
|
||||
subnets = data.aws_subnets.subnets.ids # Referencing the subnet ID from the data source
|
||||
|
||||
enable_deletion_protection = false
|
||||
}
|
||||
|
||||
|
||||
# TARGET GROUP FOR ALL PORTS
|
||||
resource "aws_lb_target_group" "app_tg_8500" {
|
||||
name = "app-target-group-8500"
|
||||
port = 8500
|
||||
protocol = "HTTP"
|
||||
vpc_id = var.vpc_id
|
||||
|
||||
health_check {
|
||||
path = "/"
|
||||
interval = 30
|
||||
timeout = 5
|
||||
healthy_threshold = 5
|
||||
unhealthy_threshold = 2
|
||||
matcher = "200"
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_lb_target_group" "app_tg_8501" {
|
||||
name = "app-target-group-8501"
|
||||
port = 8501
|
||||
protocol = "HTTP"
|
||||
vpc_id = var.vpc_id
|
||||
|
||||
health_check {
|
||||
path = "/"
|
||||
interval = 30
|
||||
timeout = 5
|
||||
healthy_threshold = 5
|
||||
unhealthy_threshold = 2
|
||||
matcher = "200"
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_lb_target_group" "app_tg_8502" {
|
||||
name = "app-target-group-8502"
|
||||
port = 8502
|
||||
protocol = "HTTP"
|
||||
vpc_id = var.vpc_id
|
||||
|
||||
health_check {
|
||||
path = "/"
|
||||
interval = 30
|
||||
timeout = 5
|
||||
healthy_threshold = 5
|
||||
unhealthy_threshold = 2
|
||||
matcher = "200"
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_lb_target_group" "app_tg_8503" {
|
||||
name = "app-target-group-8503"
|
||||
port = 8503
|
||||
protocol = "HTTP"
|
||||
vpc_id = var.vpc_id
|
||||
|
||||
health_check {
|
||||
path = "/"
|
||||
interval = 30
|
||||
timeout = 5
|
||||
healthy_threshold = 5
|
||||
unhealthy_threshold = 2
|
||||
matcher = "200"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
# Attach the target group to the listener
|
||||
resource "aws_lb_target_group_attachment" "app_instance_8500" {
|
||||
target_group_arn = aws_lb_target_group.app_tg_8500.arn
|
||||
target_id = aws_instance.streamlit_server.id
|
||||
port = 8500
|
||||
}
|
||||
|
||||
resource "aws_lb_target_group_attachment" "app_instance_8501" {
|
||||
target_group_arn = aws_lb_target_group.app_tg_8501.arn
|
||||
target_id = aws_instance.streamlit_server.id
|
||||
port = 8501
|
||||
}
|
||||
|
||||
resource "aws_lb_target_group_attachment" "app_instance_8502" {
|
||||
target_group_arn = aws_lb_target_group.app_tg_8502.arn
|
||||
target_id = aws_instance.streamlit_server.id
|
||||
port = 8502
|
||||
}
|
||||
|
||||
resource "aws_lb_target_group_attachment" "app_instance_8503" {
|
||||
target_group_arn = aws_lb_target_group.app_tg_8503.arn
|
||||
target_id = aws_instance.streamlit_server.id
|
||||
port = 8503
|
||||
}
|
||||
|
||||
|
||||
# Update listener rules
|
||||
resource "aws_lb_listener" "https_8500" {
|
||||
load_balancer_arn = aws_lb.app_lb.arn
|
||||
port = "443"
|
||||
protocol = "HTTPS"
|
||||
ssl_policy = "ELBSecurityPolicy-2016-08"
|
||||
# Using variable for ARN
|
||||
certificate_arn = var.acm_arn_dev
|
||||
|
||||
default_action {
|
||||
type = "forward"
|
||||
target_group_arn = aws_lb_target_group.app_tg_8500.arn
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_lb_listener" "https_8501" {
|
||||
load_balancer_arn = aws_lb.app_lb.arn
|
||||
port = "443"
|
||||
protocol = "HTTPS"
|
||||
ssl_policy = "ELBSecurityPolicy-2016-08"
|
||||
certificate_arn = var.acm_arn_dev
|
||||
|
||||
default_action {
|
||||
type = "forward"
|
||||
target_group_arn = aws_lb_target_group.app_tg_8501.arn
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_lb_listener" "https_8502" {
|
||||
load_balancer_arn = aws_lb.app_lb.arn
|
||||
port = "443"
|
||||
protocol = "HTTPS"
|
||||
ssl_policy = "ELBSecurityPolicy-2016-08"
|
||||
certificate_arn = var.acm_arn_dev
|
||||
|
||||
default_action {
|
||||
type = "forward"
|
||||
target_group_arn = aws_lb_target_group.app_tg_8502.arn
|
||||
}
|
||||
}
|
||||
|
||||
resource "aws_lb_listener" "https_8503" {
|
||||
load_balancer_arn = aws_lb.app_lb.arn
|
||||
port = "443"
|
||||
protocol = "HTTPS"
|
||||
ssl_policy = "ELBSecurityPolicy-2016-08"
|
||||
certificate_arn = var.acm_arn_dev
|
||||
|
||||
default_action {
|
||||
type = "forward"
|
||||
target_group_arn = aws_lb_target_group.app_tg_8503.arn
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
resource "aws_security_group" "lb_sg" {
|
||||
name = "${local.global_prefix}-load_balancer_sg"
|
||||
description = "Security group for the load balancer"
|
||||
vpc_id = var.vpc_id
|
||||
|
||||
ingress {
|
||||
from_port = 80
|
||||
to_port = 80
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["172.19.0.0/16"]
|
||||
}
|
||||
|
||||
ingress {
|
||||
from_port = 443
|
||||
to_port = 443
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["172.19.0.0/16"]
|
||||
}
|
||||
|
||||
ingress {
|
||||
from_port = 8500
|
||||
to_port = 8500
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["172.19.0.0/16"]
|
||||
}
|
||||
|
||||
ingress {
|
||||
from_port = 8501
|
||||
to_port = 8501
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["172.19.0.0/16"]
|
||||
}
|
||||
|
||||
ingress {
|
||||
from_port = 8502
|
||||
to_port = 8502
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["172.19.0.0/16"]
|
||||
}
|
||||
|
||||
ingress {
|
||||
from_port = 8503
|
||||
to_port = 8503
|
||||
protocol = "tcp"
|
||||
cidr_blocks = ["172.19.0.0/16"]
|
||||
}
|
||||
|
||||
|
||||
egress {
|
||||
from_port = 0
|
||||
to_port = 0
|
||||
protocol = "-1"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,5 @@
|
||||
provider "aws" {
|
||||
region = "us-east-2"
|
||||
profile = "temp_cred"
|
||||
}
|
||||
|
||||
terraform {
|
||||
@@ -12,15 +11,19 @@ terraform {
|
||||
}
|
||||
|
||||
backend "s3" {
|
||||
bucket = "doczyai-use2-d-infra-s3-terraform-state" # Parameterize using -backend-config flag with "terraform init"
|
||||
key = "terraform/streamlit-server/terraform.tfstate" # Parameterize
|
||||
region = "us-east-2" # Parameterize
|
||||
profile = "temp_cred" # Parameterize
|
||||
dynamodb_table = "doczyai-use2-d-infra-dyd-terraform-lock" # Parameterize
|
||||
# bucket = "doczyai-use2-d-infra-s3-terraform-state" # Parameterize using -backend-config flag with "terraform init"
|
||||
# key = "terraform/streamlit-server/terraform.tfstate" # Parameterize
|
||||
# region = "us-east-2" # Parameterize
|
||||
# profile = "temp_cred" # Parameterize
|
||||
# dynamodb_table = "doczyai-use2-d-infra-dyd-terraform-lock" # Parameterize
|
||||
encrypt = true
|
||||
}
|
||||
}
|
||||
|
||||
# data "aws_acm_certificate" "cert_global" {
|
||||
# domain = "doczy.aarete.com"
|
||||
# statuses = ["ISSUED"]
|
||||
# }
|
||||
|
||||
locals {
|
||||
region_map = {
|
||||
@@ -198,7 +201,7 @@ resource "aws_instance" "streamlit_server" {
|
||||
|
||||
tags = {
|
||||
Terraform = "true"
|
||||
Environment = "dev"
|
||||
Environment = var.environment
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
echo '${file("${path.module}/requirements.txt")}' > /tmp/requirements.txt
|
||||
apt-get update
|
||||
apt-get install -y python3 python3-pip
|
||||
pip3 install $(cat /tmp/requirements.txt)
|
||||
|
||||
# Create a basic systemd service
|
||||
cat <<EOT > /etc/systemd/system/streamlit-ui0.service
|
||||
[Unit]
|
||||
Description=Streamlit Server Service
|
||||
|
||||
[Service]
|
||||
User=ubuntu
|
||||
Type=simple
|
||||
Restart=always
|
||||
WorkingDirectory=/home/ubuntu/streamlit/doczy.ai/streamlit
|
||||
ExecStart=/home/ubuntu/.local/bin/streamlit run /home/ubuntu/streamlit/doczy.ai/streamlit/interface_0.py --server.port 8500
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOT
|
||||
|
||||
# Enable and start the service
|
||||
systemctl enable streamlit-ui0.service
|
||||
systemctl start streamlit-ui0.service
|
||||
@@ -33,13 +33,13 @@ variable "vpc_id" {
|
||||
|
||||
variable "ubuntu_ami" {
|
||||
type = string
|
||||
default = "ami-0b8b44ec9a8f90422"
|
||||
default = "ami-0de7e97fedfbc6ef6" # Switch to this ami-0b8b44ec9a8f90422
|
||||
|
||||
}
|
||||
|
||||
variable "ec2_instance_type" {
|
||||
type = string
|
||||
default = "t2.small"
|
||||
default = "t2.large"
|
||||
}
|
||||
|
||||
# EC2 iam role name
|
||||
@@ -52,4 +52,9 @@ variable "ec2_iam_role_name" {
|
||||
variable "SecretsNames"{
|
||||
type = list(string)
|
||||
default = []
|
||||
}
|
||||
|
||||
variable "acm_arn_dev" {
|
||||
type = string
|
||||
default = "arn:aws:acm:us-east-2:660131068782:certificate/3a146592-2b00-4b33-90a6-0d9ab0040d8b"
|
||||
}
|
||||
Reference in New Issue
Block a user