You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I managed to fix my main.tf file by setting this block below:
block_device_mappings = [{
device_name = "/dev/xvda"
delete_on_termination = true
volume_type = "gp3"
volume_size = 30
encrypted = true
iops = null
}]
``
But, the default configuration should be reviewed. This was caused by #2014 to fix the issue I have reported on #1954.
The text was updated successfully, but these errors were encountered:
After the release of 0.40.3 I have noticed that the runners were not triggering when having no
block_device_mapping
set in the terraform file.The error show in AWS was:
After some digging the issue found was that this block:
Actually should be
I managed to fix my
main.tf
file by setting this block below:The text was updated successfully, but these errors were encountered: