From 2c5e63343ae90ef8c740c02ca4ef7f04289fde55 Mon Sep 17 00:00:00 2001 From: Ric Harvey Date: Tue, 16 Apr 2024 15:30:14 +0100 Subject: [PATCH] add data file for AZ's and SG --- 1-getting-started/code/data.tf | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 1-getting-started/code/data.tf diff --git a/1-getting-started/code/data.tf b/1-getting-started/code/data.tf new file mode 100644 index 0000000..b134b52 --- /dev/null +++ b/1-getting-started/code/data.tf @@ -0,0 +1,7 @@ +data "aws_availability_zones" "available" {} + +data "aws_security_group" "default" { + name = "default" + vpc_id = module.vpc.vpc_id +} +