I am unable to download “terraform-aws-modules/security-group/aws”. I tried with both Terraform version 0.13.0 and 0.13.1 and I get the same error every time.
I know it is most likely related to this current active incident but there have been no updates in almost 24 hours and this is blocking my work.
Can we please get a status update on what is going on here?
2020-08-27T19:41:56.2677529Z �[0mCould not download module "alb-sec_groups"
2020-08-27T19:41:56.2678220Z source code from
2020-08-27T19:41:56.2679205Z "https://github.com/terraform-aws-modules/terraform-aws-security-group/archive/v3.16.0.tar.gz//*?archive=tar.gz":
2020-08-27T19:41:56.2680055Z bad response code: 403.
I’ve used this module for months with no issues so something must have changed on the backend.
Module config below:
module "alb-sec_groups" {
source = "terraform-aws-modules/security-group/aws"
count = var.build_green_app ? 1 : 0
version = "~>3.16.0"
name = "${var.env}-greenALB-sg"
description = "ALB security group"
vpc_id = var.vpc_id
ingress_with_cidr_blocks = [
{
from_port = 443
to_port = 443
description = "Inbound HTTPS to all"
protocol = "tcp"
cidr_blocks = "0.0.0.0/0"
}
]
egress_with_cidr_blocks = [
{
from_port = 443
to_port = 443
description = "Outbound HTTPS to all"
protocol = "tcp"
cidr_blocks = "0.0.0.0/0"
}
]
tags = "${merge(
local.common_tags,
map(
"Name", "${var.env}-greenALB-sg"
)
)}"
}