Skip to content

Ref Arch - CIS - what are acceptable CIDRs / IP address ranges for IPAllowList? #206

Answered by zackproser
zackproser asked this question in Help
Discussion options

You must be logged in to vote

Since you're using the CIS ref arch flavor, you need to ensure that you do not leave the default wide-open cidr of 0.0.0.0/0. If you forget, and submit this value anyway, our tooling will detect this and prevent your deployment from proceeding.

The CIDR that is entered here will control who can access your Bastion host and, therefore, your private resources.

The IPAllowList accepts multiple CIDRs, each on one line, like so:

IPAllowList:
  - "198.51.100.0/22" # Our shared office IP CIDR
  - "209.101.58.91/32" # Engineer #1's home office IP address

If you're entering a single IP address, such as your static home office IP address, add the /32 network prefix to the end, like this: 209.101.5…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by zackproser
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment