mirror of
https://github.com/ansible-lockdown/RHEL9-CIS.git
synced 2025-12-27 15:33:06 +00:00
updated workflow uses rocky8
Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
parent
627679064e
commit
f7e02e3f4c
8 changed files with 311 additions and 0 deletions
11
.github/workflows/github_networks.tf
vendored
Normal file
11
.github/workflows/github_networks.tf
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue