services / onelogin

OneLogin IP ranges

Official OneLogin ranges from the vendor's publication, split by purpose: agents, agents-eu, email. The ranges below render live from the signed slash0 feed.

The feed classifies this service as mixed: not every purpose runs on vendor-dedicated infrastructure. Review a purpose before treating its ranges as exclusively OneLogin.

purposedirectionIPv4IPv6
onelogin/agentsegress··
onelogin/agents-euegress··
onelogin/emailingress··

onelogin/agents

Direction: egress. Ranges your workloads connect out to; use them in security group egress rules.

loading ranges from the feed…

Terraform

data "ipranges_egress" "onelogin_agents" {
  service = "onelogin"
  purpose = "agents"
}

resource "aws_security_group_rule" "onelogin_agents" {
  type              = "egress"
  from_port         = 443
  to_port           = 443
  protocol          = "tcp"
  cidr_blocks       = data.ipranges_egress.onelogin_agents.ipv4_cidrs
  security_group_id = aws_security_group.app.id
}

onelogin/agents-eu

Direction: egress. Ranges your workloads connect out to; use them in security group egress rules.

loading ranges from the feed…

Terraform

data "ipranges_egress" "onelogin_agents_eu" {
  service = "onelogin"
  purpose = "agents-eu"
}

resource "aws_security_group_rule" "onelogin_agents_eu" {
  type              = "egress"
  from_port         = 443
  to_port           = 443
  protocol          = "tcp"
  cidr_blocks       = data.ipranges_egress.onelogin_agents_eu.ipv4_cidrs
  security_group_id = aws_security_group.app.id
}

onelogin/email

Direction: ingress. Ranges OneLogin connects from (webhook delivery); use them in security group ingress rules on your receiving endpoints.

loading ranges from the feed…

Terraform

data "ipranges_ingress" "onelogin_email" {
  service = "onelogin"
  purpose = "email"
}

resource "aws_security_group_rule" "onelogin_email" {
  type              = "ingress"
  from_port         = 443
  to_port           = 443
  protocol          = "tcp"
  cidr_blocks       = data.ipranges_ingress.onelogin_email.ipv4_cidrs
  security_group_id = aws_security_group.app.id
}

keep rules current automatically

Terraform data sources refresh only when you run an apply. The hosted tier publishes the same data via AWS managed prefix lists (slash0.onelogin.agents.v4 and so on), shared into your account via AWS RAM: rules reference one pl-… id and update within a minute of a vendor change, with removals held through a 72 hour grace window. Request early access or read how it works.

provenance

Ranges come from OneLogin's official publication: https://onelogin.service-now.com/kb_view_customer.do?sysparm_article=KB0010432. Fetched sources:

Every publish is signed (ECDSA P-256 over the feed index, each service document hash-chained to it) and every range change is recorded in the changelog. Verification steps: security. Provider setup: quickstart.