Skip to content

Commit

Permalink
Changes that test a draft version of the remote formatter that uses g…
Browse files Browse the repository at this point in the history
…raphql. DO NOT MERGE.
  • Loading branch information
mikereiddigital committed Oct 1, 2024
1 parent c3844da commit e394b7c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/format-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- uses: ministryofjustice/github-actions/code-formatter@7c689fe2de15e1692f5cceceb132919ab854081c # v14
- uses: ministryofjustice/github-actions/code-formatter@3dead42d52afa2b4b53de8908d082c87063fb2c1 # v14
with:
ignore-files: "README.md"
env:
Expand Down
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -498,15 +498,15 @@ resource "aws_autoscaling_schedule" "bastion_linux_scale_down" {
scheduled_action_name = "${var.instance_name}_scale_down"
min_size = 0
max_size = 0
desired_capacity = 0
desired_capacity = 0
recurrence = var.autoscaling_cron["down"]
autoscaling_group_name = aws_autoscaling_group.bastion_linux_daily.name
}

resource "aws_autoscaling_schedule" "bastion_linux_scale_up" {
scheduled_action_name = "${var.instance_name}_scale_up"
min_size = 1
max_size = 1
max_size = 1
desired_capacity = 1
recurrence = var.autoscaling_cron["up"]
autoscaling_group_name = aws_autoscaling_group.bastion_linux_daily.name
Expand Down
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ output "bastion_security_group" {
}

output "bastion_launch_template" {
description = "Launch template of bastion"
description = "Launch template of bastion"
value = aws_launch_template.bastion_linux_template
}

output "bastion_s3_bucket" {
description = "S3 bucket of bastion"
description = "S3 bucket of bastion"
value = module.s3-bucket
}

Expand Down

0 comments on commit e394b7c

Please sign in to comment.