Skip to content

Commit

Permalink
Increase size of bastion instance
Browse files Browse the repository at this point in the history
The bastion instance was running very close to its memory limit, which
caused issues when installing the Datadog agent on the machine. The
instance has been resized to the next bigger size to avoid any more
instabilities.
  • Loading branch information
jdno committed Jul 20, 2023
1 parent 7efb6c7 commit dc794f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions terraform/bastion/.terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion terraform/bastion/instance.tf
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ data "aws_ami" "ubuntu_bionic" {

resource "aws_instance" "bastion" {
ami = data.aws_ami.ubuntu_bionic.id
instance_type = "t3a.nano"
instance_type = "t3a.micro"
key_name = data.terraform_remote_state.shared.outputs.master_ec2_key_pair
ebs_optimized = true
disable_api_termination = true
Expand Down

0 comments on commit dc794f4

Please sign in to comment.