Skip to content

Commit

Permalink
feat(terraform): vol5504 add single batch job
Browse files Browse the repository at this point in the history
  • Loading branch information
cmarstondvsa committed Jul 3, 2024
1 parent e1bbb27 commit aa69c96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions infra/terraform/modules/service/batch.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ module "batch" {
source = "terraform-aws-modules/batch/aws"
version = "~> 2.0.0"

instance_iam_role_name = "${var.environment}-batch-test-ecs-instance-role"
instance_iam_role_name = "${var.environment}-batch-app-ecs-instance-role"
instance_iam_role_path = "/batch/"
instance_iam_role_description = "IAM instance role/profile for AWS Batch ECS instance(s)"
instance_iam_role_tags = {
ModuleCreatedRole = "Yes"
}

service_iam_role_name = "${var.environment}-batch-test-batch-role"
service_iam_role_name = "${var.environment}-batch-app-batch-role"
service_iam_role_path = "/batch/"
service_iam_role_description = "IAM service role for AWS Batch"
service_iam_role_tags = {
ModuleCreatedRole = "Yes"
}

create_spot_fleet_iam_role = false
spot_fleet_iam_role_name = "${var.environment}-batch-test-spot-role"
spot_fleet_iam_role_name = "${var.environment}-batch-app-spot-role"
spot_fleet_iam_role_path = "/batch/"
spot_fleet_iam_role_description = "IAM spot fleet role for AWS Batch"
spot_fleet_iam_role_tags = {
Expand Down

0 comments on commit aa69c96

Please sign in to comment.