RHEL9-CIS/.github/workflows/github_networks.tf
Mark Bolwell f7e02e3f4c
updated workflow uses rocky8
Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
2022-02-28 09:19:26 +00:00

11 lines
214 B
HCL

resource "aws_vpc" "Main" {
cidr_block = var.main_vpc_cidr
tags = var.instance_tags
}
resource "aws_internet_gateway" "IGW" {
vpc_id = aws_vpc.Main.id
tags = {
Name = "${var.namespace}-IGW"
}
}