Skip to content

Commit

Permalink
fixed instance setting
Browse files Browse the repository at this point in the history
  • Loading branch information
tkjwa committed Jul 8, 2022
1 parent 564e948 commit e464dec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings.tf
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ locals {
{
namespace = "aws:ec2:instances"
name = "InstanceTypes"
value = local.instance_type != "" ? local.instance_type : (local.production ? "t4g.small" : "t4g.micro")
value = local.instance_type != null ? local.instance_type : (local.production ? "t4g.small" : "t4g.micro")
},
{
namespace = "aws:ec2:vpc"
Expand Down

0 comments on commit e464dec

Please sign in to comment.