Update README.md (#667)

* Update README.md

Fixed VPC SC example

* Update README.md
This commit is contained in:
javiergp 2022-06-05 19:43:14 +02:00 committed by GitHub
parent c9adb84626
commit fa321fc67c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -186,18 +186,19 @@ Below an example for an access level that allows unconditional ingress from a se
# terraform.tfvars
vpc_sc_access_levels = {
on-prem = {
onprem = {
combining_function = null,
conditions = [{
ip_subnetworks = ["10.0.0.0/24", "10.0.0.1/24"],
combining_function = null, members = null, negate = null,
ip_subnetworks = ["101.101.101.0/24"],
members = null, negate = null,
regions = null, required_access_levels = null
}]
}
}
vpc_sc_perimeter_access_levels = {
dev = null
landing = ["on-prem"]
prod = ["on-prem"]
landing = ["onprem"]
prod = ["onprem"]
}
```