updated workflow uses rocky8

Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
Mark Bolwell 2022-02-28 09:19:26 +00:00
parent 627679064e
commit f7e02e3f4c
No known key found for this signature in database
GPG key ID: F734FDFC154B83FB
8 changed files with 311 additions and 0 deletions

11
.github/workflows/github_networks.tf vendored Normal file
View file

@ -0,0 +1,11 @@
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"
}
}