mirror of
https://github.com/netbirdio/terraform-provider-netbird.git
synced 2026-05-22 17:13:16 -07:00
- Added SCIM resource and data source for managing SCIM integration settings - Added Identity Provider resource and data source for managing IdP configurations - Enhanced Account Settings with new configuration options - Added authorized_groups support for SSH policy rules - Added skip_auto_apply option for exit node routes - Updated REST client to latest version - Replaced mock-jwt-provider with embedded IdP in test infrastructure
10 lines
150 B
Terraform
10 lines
150 B
Terraform
# Retrieve by id
|
|
data "netbird_scim" "example" {
|
|
id = "1"
|
|
}
|
|
|
|
# Retrieve by provider name
|
|
data "netbird_scim" "example" {
|
|
provider_name = "okta"
|
|
}
|