Skip to content

Commit

Permalink
fixed the formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Praveenraj-K committed Dec 4, 2024
1 parent 72e4135 commit ef8ff3d
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions terraform/010-cluster/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,18 +44,18 @@ data "aws_ami" "ecs_ami" {
* Create auto-scaling group
*/
module "asg" {
source = "github.com/silinternational/terraform-modules//aws/asg?ref=8.13.2"
app_name = var.app_name
app_env = var.app_env
aws_instance = var.aws_instance
private_subnet_ids = module.vpc.private_subnet_ids
default_sg_id = module.vpc.vpc_default_sg_id
ecs_instance_profile_id = var.ecs_instance_profile_id
ecs_cluster_name = var.ecs_cluster_name
ami_id = data.aws_ami.ecs_ami.id
additional_user_data = var.asg_additional_user_data
tags = var.tags
enable_ec2_detailed_monitoring = var.enable_ec2_detailed_monitoring
source = "github.com/silinternational/terraform-modules//aws/asg?ref=8.13.2"
app_name = var.app_name
app_env = var.app_env
aws_instance = var.aws_instance
private_subnet_ids = module.vpc.private_subnet_ids
default_sg_id = module.vpc.vpc_default_sg_id
ecs_instance_profile_id = var.ecs_instance_profile_id
ecs_cluster_name = var.ecs_cluster_name
ami_id = data.aws_ami.ecs_ami.id
additional_user_data = var.asg_additional_user_data
tags = var.tags
enable_ec2_detailed_monitoring = var.enable_ec2_detailed_monitoring
}

/*
Expand Down

0 comments on commit ef8ff3d

Please sign in to comment.