seqeralabs / terraform-seqera-aws

Apache License 2.0
6 stars 3 forks source link

Add support for Ec2 instance deployment #18

Closed pditommaso closed 11 months ago

pditommaso commented 12 months ago

One requirement for the automated deployment is the ability to deploy Seqera Platform is a single VM environment. In this scenario the Terraform module should be able to:

enekui commented 12 months ago

I am almost done with all the part at logic level that was blocking me. We will need to have a call to clarify a lot details regarding the EC2 instance and many others regarding the AWS Loadbalnacer. There is a lot pending to be clarified.

pditommaso commented 12 months ago

Let's focus on. the Ec2 instance, instance role and security group. It would be a great start

enekui commented 12 months ago

Let's focus on. the Ec2 instance, instance role and security group. It would be a great start

pditommaso commented 12 months ago

Which AMI to use for the EC2 instance?

a parameter defaulting defaulting to Amazon linux AMI

How the instance will be accessed, SSH, SSMSessionManager?

SSH

Default instance type

The same as for EKS node instance type

Associate Public IP?

Optional, default YES

EBS volume type

gp3, size defined via a variable default to 100GB

StartUp Script?

No (at least for now)

enekui commented 12 months ago

Updates

Example of public EC2 instance main.tf

module "terraform-seqera-module" {
  source  = "github.com/seqeralabs/terraform-seqera-aws"
  aws_profile = "development"
  region  = "eu-west-2"

  ## VPC
  vpc_name = "seqera-vpc"

  ## EC2 Instance
  create_ec2_instance = true
  create_ec2_instance_local_key_pair = true
  create_public_ec2_instance = true

  default_tags = {
    Environment = "development"
    ManagedBy   = "Terraform"
    Product     = "Seqera"
    CreatedBy   = "DevOps"
  }
}

output "database_url" {
  value = module.terraform-seqera-module.database_url
}

output "redis_url" {
  value = module.terraform-seqera-module.redis_url
}

Example of private EC2 instance

module "terraform-seqera-module" {
  source  = "github.com/seqeralabs/terraform-seqera-aws"
  aws_profile = "development"
  region  = "eu-west-2"

  ## VPC
  vpc_name = "seqera-vpc"

  ## EC2 Instance
  create_ec2_instance = true
  enable_ec2_instance_session_manager_access = true

  default_tags = {
    Environment = "development"
    ManagedBy   = "Terraform"
    Product     = "Seqera"
    CreatedBy   = "DevOps"
  }
}

output "database_url" {
  value = module.terraform-seqera-module.database_url
}

output "redis_url" {
  value = module.terraform-seqera-module.redis_url
}

Example of public EC2 instance with secure SSM Session Manager access main.tf

module "terraform-seqera-module" {
  source  = "github.com/seqeralabs/terraform-seqera-aws"
  aws_profile = "development"
  region  = "eu-west-2"

  ## VPC
  vpc_name = "seqera-vpc"

  ## EC2 Instance
  create_ec2_instance = true
  enable_ec2_instance_session_manager_access = true
  create_public_ec2_instance = true
  ec2_instance_security_group_ingress_rules_names = ["http-80-tcp", "https-443-tcp"]

  default_tags = {
    Environment = "development"
    ManagedBy   = "Terraform"
    Product     = "Seqera"
    CreatedBy   = "DevOps"
  }
}

output "database_url" {
  value = module.terraform-seqera-module.database_url
}

output "redis_url" {
  value = module.terraform-seqera-module.redis_url
}

Commit

f7e9df189943aaab2fcbc61bba91724146304428

pditommaso commented 12 months ago

Nice, please make a PR for this

enekui commented 12 months ago

Nice, please make a PR for this

Sure! But I need to continue doing some more testing before that. I am testing all the different possibilities, and scenarios. Will improve code comments, will update README.md, etc.

pditommaso commented 12 months ago

A PR can be in draft mode, no worries about not being complete