From 8801bd02539773f0fc252e9a49dbb309010b213d Mon Sep 17 00:00:00 2001 From: badra001 Date: Mon, 16 Dec 2024 12:20:19 -0500 Subject: [PATCH] fix doc --- rds-postgres/README.md | 6 +++--- rds-postgres/main.tf | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rds-postgres/README.md b/rds-postgres/README.md index b224b82..8e2303c 100644 --- a/rds-postgres/README.md +++ b/rds-postgres/README.md @@ -19,8 +19,9 @@ module "postgres" { ## tags for Name, CostAllocation, and Environment are pre-set, but they can be overriden # tags = { } } +``` -## ingress_networks +## ingress\_networks This is the list of network CIDR blocks for inbound access to the ports defined for RDS Postgres. There is a default set of CIDR blocks provided if this field is not populated. This is comprised of the Census networks: @@ -31,11 +32,10 @@ Census networks: Passing a null or empty list to this field will ignore the ingress setting on these networks. -## ingress_prefix_list_names +## ingress\_prefix\_list\_names In order to use a managed prefix list, you may pass a list of names in this field. The prefix lists will be looked up and the resultant IDs used in the security group for inbound port access to RDS Postgres. This will fail if the prefix list does not exist. -``` ## Requirements diff --git a/rds-postgres/main.tf b/rds-postgres/main.tf index fd985ee..a4b1e26 100644 --- a/rds-postgres/main.tf +++ b/rds-postgres/main.tf @@ -20,6 +20,7 @@ * ## tags for Name, CostAllocation, and Environment are pre-set, but they can be overriden * # tags = { } * } +* ``` * * ## ingress_networks * This is the list of network CIDR blocks for inbound access to the ports defined for RDS Postgres. @@ -36,7 +37,6 @@ * In order to use a managed prefix list, you may pass a list of names in this field. The prefix lists * will be looked up and the resultant IDs used in the security group for inbound port access to RDS * Postgres. This will fail if the prefix list does not exist. -* ``` */ data "aws_vpc" "this_vpc" {