Is it possible to IP whitelist the developer portal?

Not applicable

We're still working on our developer portal, and have been asked if we can whitelist access to the portal only to certain IP addresses. We're on Apigee in the cloud. Is that possible?

Solved Solved
1 2 874
1 ACCEPTED SOLUTION

Yes. You can do this with a drupal community module .

See restrict_ip, here.

This is the great thing about Drupal - so many options.

As for how you would install and enable this on your own site...

restrict_ip is not one of the Drupal modules included in the Apigee distribution of Drupal. To use it on your site, you must add it yourself. This involves:

  • performing a git clone of your dev site (See the Pantheon dashboard for the git repo URL)
  • Downloading the restrict_ip module and unpacking it into /sites/all/modules/contrib/restrict_ip
  • git commit, git push
  • In the browser, login to your DEV site as Admin, navigate to the Modules configuration page
  • enable the restrict_ip module
  • configure the restrict_ip module, taking care to not lock yourself out.

When you have finished testing on the DEV site, you can promote the changes to the TEST and LIVE sites.

View solution in original post

2 REPLIES 2

Yes. You can do this with a drupal community module .

See restrict_ip, here.

This is the great thing about Drupal - so many options.

As for how you would install and enable this on your own site...

restrict_ip is not one of the Drupal modules included in the Apigee distribution of Drupal. To use it on your site, you must add it yourself. This involves:

  • performing a git clone of your dev site (See the Pantheon dashboard for the git repo URL)
  • Downloading the restrict_ip module and unpacking it into /sites/all/modules/contrib/restrict_ip
  • git commit, git push
  • In the browser, login to your DEV site as Admin, navigate to the Modules configuration page
  • enable the restrict_ip module
  • configure the restrict_ip module, taking care to not lock yourself out.

When you have finished testing on the DEV site, you can promote the changes to the TEST and LIVE sites.

Thanks, Dino!