Closed pditommaso closed 11 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.
Let's focus on. the Ec2 instance, instance role and security group. It would be a great start
Let's focus on. the Ec2 instance, instance role and security group. It would be a great start
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)
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
}
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
}
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
}
f7e9df189943aaab2fcbc61bba91724146304428
Nice, please make a PR for this
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.
A PR can be in draft mode, no worries about not being complete
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:
seqera-forge-role
seqera-forge-role
as instance tole2522 (ssh), 80, 443