published on Saturday, Feb 21, 2026 by Pulumi
published on Saturday, Feb 21, 2026 by Pulumi
Allows you to manage time policies.
Time policies allow you to define conditions based on time ranges. You can specify when access should be granted using various time constraints including date, month, year, hour, and minute ranges.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as keycloak from "@pulumi/keycloak";
const realm = new keycloak.Realm("realm", {
realm: "my-realm",
enabled: true,
});
const test = new keycloak.openid.Client("test", {
clientId: "client_id",
realmId: realm.id,
accessType: "CONFIDENTIAL",
serviceAccountsEnabled: true,
authorization: {
policyEnforcementMode: "ENFORCING",
},
});
// Policy for business hours only (9 AM - 5 PM)
const businessHours = new keycloak.openid.ClientTimePolicy("business_hours", {
resourceServerId: test.resourceServerId,
realmId: realm.id,
name: "business_hours_policy",
decisionStrategy: "UNANIMOUS",
logic: "POSITIVE",
hour: "09",
hourEnd: "17",
});
// Policy for specific date range
const dateRange = new keycloak.openid.ClientTimePolicy("date_range", {
resourceServerId: test.resourceServerId,
realmId: realm.id,
name: "date_range_policy",
decisionStrategy: "UNANIMOUS",
logic: "POSITIVE",
notBefore: "2024-01-01 00:00:00",
notOnOrAfter: "2024-12-31 23:59:59",
});
// Policy for specific months (January to March)
const quarter1 = new keycloak.openid.ClientTimePolicy("quarter1", {
resourceServerId: test.resourceServerId,
realmId: realm.id,
name: "q1_policy",
decisionStrategy: "UNANIMOUS",
logic: "POSITIVE",
month: "1",
monthEnd: "3",
});
import pulumi
import pulumi_keycloak as keycloak
realm = keycloak.Realm("realm",
realm="my-realm",
enabled=True)
test = keycloak.openid.Client("test",
client_id="client_id",
realm_id=realm.id,
access_type="CONFIDENTIAL",
service_accounts_enabled=True,
authorization={
"policy_enforcement_mode": "ENFORCING",
})
# Policy for business hours only (9 AM - 5 PM)
business_hours = keycloak.openid.ClientTimePolicy("business_hours",
resource_server_id=test.resource_server_id,
realm_id=realm.id,
name="business_hours_policy",
decision_strategy="UNANIMOUS",
logic="POSITIVE",
hour="09",
hour_end="17")
# Policy for specific date range
date_range = keycloak.openid.ClientTimePolicy("date_range",
resource_server_id=test.resource_server_id,
realm_id=realm.id,
name="date_range_policy",
decision_strategy="UNANIMOUS",
logic="POSITIVE",
not_before="2024-01-01 00:00:00",
not_on_or_after="2024-12-31 23:59:59")
# Policy for specific months (January to March)
quarter1 = keycloak.openid.ClientTimePolicy("quarter1",
resource_server_id=test.resource_server_id,
realm_id=realm.id,
name="q1_policy",
decision_strategy="UNANIMOUS",
logic="POSITIVE",
month="1",
month_end="3")
package main
import (
"github.com/pulumi/pulumi-keycloak/sdk/v6/go/keycloak"
"github.com/pulumi/pulumi-keycloak/sdk/v6/go/keycloak/openid"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
realm, err := keycloak.NewRealm(ctx, "realm", &keycloak.RealmArgs{
Realm: pulumi.String("my-realm"),
Enabled: pulumi.Bool(true),
})
if err != nil {
return err
}
test, err := openid.NewClient(ctx, "test", &openid.ClientArgs{
ClientId: pulumi.String("client_id"),
RealmId: realm.ID(),
AccessType: pulumi.String("CONFIDENTIAL"),
ServiceAccountsEnabled: pulumi.Bool(true),
Authorization: &openid.ClientAuthorizationArgs{
PolicyEnforcementMode: pulumi.String("ENFORCING"),
},
})
if err != nil {
return err
}
// Policy for business hours only (9 AM - 5 PM)
_, err = openid.NewClientTimePolicy(ctx, "business_hours", &openid.ClientTimePolicyArgs{
ResourceServerId: test.ResourceServerId,
RealmId: realm.ID(),
Name: pulumi.String("business_hours_policy"),
DecisionStrategy: pulumi.String("UNANIMOUS"),
Logic: pulumi.String("POSITIVE"),
Hour: pulumi.String("09"),
HourEnd: pulumi.String("17"),
})
if err != nil {
return err
}
// Policy for specific date range
_, err = openid.NewClientTimePolicy(ctx, "date_range", &openid.ClientTimePolicyArgs{
ResourceServerId: test.ResourceServerId,
RealmId: realm.ID(),
Name: pulumi.String("date_range_policy"),
DecisionStrategy: pulumi.String("UNANIMOUS"),
Logic: pulumi.String("POSITIVE"),
NotBefore: pulumi.String("2024-01-01 00:00:00"),
NotOnOrAfter: pulumi.String("2024-12-31 23:59:59"),
})
if err != nil {
return err
}
// Policy for specific months (January to March)
_, err = openid.NewClientTimePolicy(ctx, "quarter1", &openid.ClientTimePolicyArgs{
ResourceServerId: test.ResourceServerId,
RealmId: realm.ID(),
Name: pulumi.String("q1_policy"),
DecisionStrategy: pulumi.String("UNANIMOUS"),
Logic: pulumi.String("POSITIVE"),
Month: pulumi.String("1"),
MonthEnd: pulumi.String("3"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Keycloak = Pulumi.Keycloak;
return await Deployment.RunAsync(() =>
{
var realm = new Keycloak.Realm("realm", new()
{
RealmName = "my-realm",
Enabled = true,
});
var test = new Keycloak.OpenId.Client("test", new()
{
ClientId = "client_id",
RealmId = realm.Id,
AccessType = "CONFIDENTIAL",
ServiceAccountsEnabled = true,
Authorization = new Keycloak.OpenId.Inputs.ClientAuthorizationArgs
{
PolicyEnforcementMode = "ENFORCING",
},
});
// Policy for business hours only (9 AM - 5 PM)
var businessHours = new Keycloak.OpenId.ClientTimePolicy("business_hours", new()
{
ResourceServerId = test.ResourceServerId,
RealmId = realm.Id,
Name = "business_hours_policy",
DecisionStrategy = "UNANIMOUS",
Logic = "POSITIVE",
Hour = "09",
HourEnd = "17",
});
// Policy for specific date range
var dateRange = new Keycloak.OpenId.ClientTimePolicy("date_range", new()
{
ResourceServerId = test.ResourceServerId,
RealmId = realm.Id,
Name = "date_range_policy",
DecisionStrategy = "UNANIMOUS",
Logic = "POSITIVE",
NotBefore = "2024-01-01 00:00:00",
NotOnOrAfter = "2024-12-31 23:59:59",
});
// Policy for specific months (January to March)
var quarter1 = new Keycloak.OpenId.ClientTimePolicy("quarter1", new()
{
ResourceServerId = test.ResourceServerId,
RealmId = realm.Id,
Name = "q1_policy",
DecisionStrategy = "UNANIMOUS",
Logic = "POSITIVE",
Month = "1",
MonthEnd = "3",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.keycloak.Realm;
import com.pulumi.keycloak.RealmArgs;
import com.pulumi.keycloak.openid.Client;
import com.pulumi.keycloak.openid.ClientArgs;
import com.pulumi.keycloak.openid.inputs.ClientAuthorizationArgs;
import com.pulumi.keycloak.openid.ClientTimePolicy;
import com.pulumi.keycloak.openid.ClientTimePolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var realm = new Realm("realm", RealmArgs.builder()
.realm("my-realm")
.enabled(true)
.build());
var test = new Client("test", ClientArgs.builder()
.clientId("client_id")
.realmId(realm.id())
.accessType("CONFIDENTIAL")
.serviceAccountsEnabled(true)
.authorization(ClientAuthorizationArgs.builder()
.policyEnforcementMode("ENFORCING")
.build())
.build());
// Policy for business hours only (9 AM - 5 PM)
var businessHours = new ClientTimePolicy("businessHours", ClientTimePolicyArgs.builder()
.resourceServerId(test.resourceServerId())
.realmId(realm.id())
.name("business_hours_policy")
.decisionStrategy("UNANIMOUS")
.logic("POSITIVE")
.hour("09")
.hourEnd("17")
.build());
// Policy for specific date range
var dateRange = new ClientTimePolicy("dateRange", ClientTimePolicyArgs.builder()
.resourceServerId(test.resourceServerId())
.realmId(realm.id())
.name("date_range_policy")
.decisionStrategy("UNANIMOUS")
.logic("POSITIVE")
.notBefore("2024-01-01 00:00:00")
.notOnOrAfter("2024-12-31 23:59:59")
.build());
// Policy for specific months (January to March)
var quarter1 = new ClientTimePolicy("quarter1", ClientTimePolicyArgs.builder()
.resourceServerId(test.resourceServerId())
.realmId(realm.id())
.name("q1_policy")
.decisionStrategy("UNANIMOUS")
.logic("POSITIVE")
.month("1")
.monthEnd("3")
.build());
}
}
resources:
realm:
type: keycloak:Realm
properties:
realm: my-realm
enabled: true
test:
type: keycloak:openid:Client
properties:
clientId: client_id
realmId: ${realm.id}
accessType: CONFIDENTIAL
serviceAccountsEnabled: true
authorization:
policyEnforcementMode: ENFORCING
# Policy for business hours only (9 AM - 5 PM)
businessHours:
type: keycloak:openid:ClientTimePolicy
name: business_hours
properties:
resourceServerId: ${test.resourceServerId}
realmId: ${realm.id}
name: business_hours_policy
decisionStrategy: UNANIMOUS
logic: POSITIVE
hour: '09'
hourEnd: '17'
# Policy for specific date range
dateRange:
type: keycloak:openid:ClientTimePolicy
name: date_range
properties:
resourceServerId: ${test.resourceServerId}
realmId: ${realm.id}
name: date_range_policy
decisionStrategy: UNANIMOUS
logic: POSITIVE
notBefore: 2024-01-01 00:00:00
notOnOrAfter: 2024-12-31 23:59:59
# Policy for specific months (January to March)
quarter1:
type: keycloak:openid:ClientTimePolicy
properties:
resourceServerId: ${test.resourceServerId}
realmId: ${realm.id}
name: q1_policy
decisionStrategy: UNANIMOUS
logic: POSITIVE
month: '1'
monthEnd: '3'
Argument Reference
The following arguments are supported:
realm_id- (Required) The realm this policy exists in.resource_server_id- (Required) The ID of the resource server.name- (Required) The name of the policy.decision_strategy- (Required) The decision strategy, can be one ofUNANIMOUS,AFFIRMATIVE, orCONSENSUS.logic- (Optional) The logic, can be one ofPOSITIVEorNEGATIVE. Defaults toPOSITIVE.not_before- (Optional) The policy is valid only after this date/time (format:YYYY-MM-DD HH:MM:SS).not_on_or_after- (Optional) The policy is valid only before this date/time (format:YYYY-MM-DD HH:MM:SS).day_month- (Optional) Starting day of the month (1-31).day_month_end- (Optional) Ending day of the month (1-31).month- (Optional) Starting month (1-12).month_end- (Optional) Ending month (1-12).year- (Optional) Starting year.year_end- (Optional) Ending year.hour- (Optional) Starting hour (0-23).hour_end- (Optional) Ending hour (0-23).minute- (Optional) Starting minute (0-59).minute_end- (Optional) Ending minute (0-59).description- (Optional) A description for the authorization policy.
Attributes Reference
In addition to the arguments listed above, the following computed attributes are exported:
id- Policy ID representing the time policy.
Create ClientTimePolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClientTimePolicy(name: string, args: ClientTimePolicyArgs, opts?: CustomResourceOptions);@overload
def ClientTimePolicy(resource_name: str,
args: ClientTimePolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ClientTimePolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
realm_id: Optional[str] = None,
resource_server_id: Optional[str] = None,
decision_strategy: Optional[str] = None,
minute_end: Optional[str] = None,
month_end: Optional[str] = None,
hour_end: Optional[str] = None,
logic: Optional[str] = None,
minute: Optional[str] = None,
day_month: Optional[str] = None,
month: Optional[str] = None,
hour: Optional[str] = None,
name: Optional[str] = None,
not_before: Optional[str] = None,
not_on_or_after: Optional[str] = None,
description: Optional[str] = None,
day_month_end: Optional[str] = None,
year: Optional[str] = None,
year_end: Optional[str] = None)func NewClientTimePolicy(ctx *Context, name string, args ClientTimePolicyArgs, opts ...ResourceOption) (*ClientTimePolicy, error)public ClientTimePolicy(string name, ClientTimePolicyArgs args, CustomResourceOptions? opts = null)
public ClientTimePolicy(String name, ClientTimePolicyArgs args)
public ClientTimePolicy(String name, ClientTimePolicyArgs args, CustomResourceOptions options)
type: keycloak:openid:ClientTimePolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ClientTimePolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ClientTimePolicyArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ClientTimePolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClientTimePolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClientTimePolicyArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var clientTimePolicyResource = new Keycloak.OpenId.ClientTimePolicy("clientTimePolicyResource", new()
{
RealmId = "string",
ResourceServerId = "string",
DecisionStrategy = "string",
MinuteEnd = "string",
MonthEnd = "string",
HourEnd = "string",
Logic = "string",
Minute = "string",
DayMonth = "string",
Month = "string",
Hour = "string",
Name = "string",
NotBefore = "string",
NotOnOrAfter = "string",
Description = "string",
DayMonthEnd = "string",
Year = "string",
YearEnd = "string",
});
example, err := openid.NewClientTimePolicy(ctx, "clientTimePolicyResource", &openid.ClientTimePolicyArgs{
RealmId: pulumi.String("string"),
ResourceServerId: pulumi.String("string"),
DecisionStrategy: pulumi.String("string"),
MinuteEnd: pulumi.String("string"),
MonthEnd: pulumi.String("string"),
HourEnd: pulumi.String("string"),
Logic: pulumi.String("string"),
Minute: pulumi.String("string"),
DayMonth: pulumi.String("string"),
Month: pulumi.String("string"),
Hour: pulumi.String("string"),
Name: pulumi.String("string"),
NotBefore: pulumi.String("string"),
NotOnOrAfter: pulumi.String("string"),
Description: pulumi.String("string"),
DayMonthEnd: pulumi.String("string"),
Year: pulumi.String("string"),
YearEnd: pulumi.String("string"),
})
var clientTimePolicyResource = new ClientTimePolicy("clientTimePolicyResource", ClientTimePolicyArgs.builder()
.realmId("string")
.resourceServerId("string")
.decisionStrategy("string")
.minuteEnd("string")
.monthEnd("string")
.hourEnd("string")
.logic("string")
.minute("string")
.dayMonth("string")
.month("string")
.hour("string")
.name("string")
.notBefore("string")
.notOnOrAfter("string")
.description("string")
.dayMonthEnd("string")
.year("string")
.yearEnd("string")
.build());
client_time_policy_resource = keycloak.openid.ClientTimePolicy("clientTimePolicyResource",
realm_id="string",
resource_server_id="string",
decision_strategy="string",
minute_end="string",
month_end="string",
hour_end="string",
logic="string",
minute="string",
day_month="string",
month="string",
hour="string",
name="string",
not_before="string",
not_on_or_after="string",
description="string",
day_month_end="string",
year="string",
year_end="string")
const clientTimePolicyResource = new keycloak.openid.ClientTimePolicy("clientTimePolicyResource", {
realmId: "string",
resourceServerId: "string",
decisionStrategy: "string",
minuteEnd: "string",
monthEnd: "string",
hourEnd: "string",
logic: "string",
minute: "string",
dayMonth: "string",
month: "string",
hour: "string",
name: "string",
notBefore: "string",
notOnOrAfter: "string",
description: "string",
dayMonthEnd: "string",
year: "string",
yearEnd: "string",
});
type: keycloak:openid:ClientTimePolicy
properties:
dayMonth: string
dayMonthEnd: string
decisionStrategy: string
description: string
hour: string
hourEnd: string
logic: string
minute: string
minuteEnd: string
month: string
monthEnd: string
name: string
notBefore: string
notOnOrAfter: string
realmId: string
resourceServerId: string
year: string
yearEnd: string
ClientTimePolicy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ClientTimePolicy resource accepts the following input properties:
- Decision
Strategy string - Realm
Id string - Resource
Server stringId - Day
Month string - Day
Month stringEnd - Description string
- Hour string
- Hour
End string - Logic string
- Minute string
- Minute
End string - Month string
- Month
End string - Name string
- Not
Before string - Not
On stringOr After - Year string
- Year
End string
- Decision
Strategy string - Realm
Id string - Resource
Server stringId - Day
Month string - Day
Month stringEnd - Description string
- Hour string
- Hour
End string - Logic string
- Minute string
- Minute
End string - Month string
- Month
End string - Name string
- Not
Before string - Not
On stringOr After - Year string
- Year
End string
- decision
Strategy String - realm
Id String - resource
Server StringId - day
Month String - day
Month StringEnd - description String
- hour String
- hour
End String - logic String
- minute String
- minute
End String - month String
- month
End String - name String
- not
Before String - not
On StringOr After - year String
- year
End String
- decision
Strategy string - realm
Id string - resource
Server stringId - day
Month string - day
Month stringEnd - description string
- hour string
- hour
End string - logic string
- minute string
- minute
End string - month string
- month
End string - name string
- not
Before string - not
On stringOr After - year string
- year
End string
- decision_
strategy str - realm_
id str - resource_
server_ strid - day_
month str - day_
month_ strend - description str
- hour str
- hour_
end str - logic str
- minute str
- minute_
end str - month str
- month_
end str - name str
- not_
before str - not_
on_ stror_ after - year str
- year_
end str
- decision
Strategy String - realm
Id String - resource
Server StringId - day
Month String - day
Month StringEnd - description String
- hour String
- hour
End String - logic String
- minute String
- minute
End String - month String
- month
End String - name String
- not
Before String - not
On StringOr After - year String
- year
End String
Outputs
All input properties are implicitly available as output properties. Additionally, the ClientTimePolicy resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ClientTimePolicy Resource
Get an existing ClientTimePolicy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ClientTimePolicyState, opts?: CustomResourceOptions): ClientTimePolicy@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
day_month: Optional[str] = None,
day_month_end: Optional[str] = None,
decision_strategy: Optional[str] = None,
description: Optional[str] = None,
hour: Optional[str] = None,
hour_end: Optional[str] = None,
logic: Optional[str] = None,
minute: Optional[str] = None,
minute_end: Optional[str] = None,
month: Optional[str] = None,
month_end: Optional[str] = None,
name: Optional[str] = None,
not_before: Optional[str] = None,
not_on_or_after: Optional[str] = None,
realm_id: Optional[str] = None,
resource_server_id: Optional[str] = None,
year: Optional[str] = None,
year_end: Optional[str] = None) -> ClientTimePolicyfunc GetClientTimePolicy(ctx *Context, name string, id IDInput, state *ClientTimePolicyState, opts ...ResourceOption) (*ClientTimePolicy, error)public static ClientTimePolicy Get(string name, Input<string> id, ClientTimePolicyState? state, CustomResourceOptions? opts = null)public static ClientTimePolicy get(String name, Output<String> id, ClientTimePolicyState state, CustomResourceOptions options)resources: _: type: keycloak:openid:ClientTimePolicy get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Day
Month string - Day
Month stringEnd - Decision
Strategy string - Description string
- Hour string
- Hour
End string - Logic string
- Minute string
- Minute
End string - Month string
- Month
End string - Name string
- Not
Before string - Not
On stringOr After - Realm
Id string - Resource
Server stringId - Year string
- Year
End string
- Day
Month string - Day
Month stringEnd - Decision
Strategy string - Description string
- Hour string
- Hour
End string - Logic string
- Minute string
- Minute
End string - Month string
- Month
End string - Name string
- Not
Before string - Not
On stringOr After - Realm
Id string - Resource
Server stringId - Year string
- Year
End string
- day
Month String - day
Month StringEnd - decision
Strategy String - description String
- hour String
- hour
End String - logic String
- minute String
- minute
End String - month String
- month
End String - name String
- not
Before String - not
On StringOr After - realm
Id String - resource
Server StringId - year String
- year
End String
- day
Month string - day
Month stringEnd - decision
Strategy string - description string
- hour string
- hour
End string - logic string
- minute string
- minute
End string - month string
- month
End string - name string
- not
Before string - not
On stringOr After - realm
Id string - resource
Server stringId - year string
- year
End string
- day_
month str - day_
month_ strend - decision_
strategy str - description str
- hour str
- hour_
end str - logic str
- minute str
- minute_
end str - month str
- month_
end str - name str
- not_
before str - not_
on_ stror_ after - realm_
id str - resource_
server_ strid - year str
- year_
end str
- day
Month String - day
Month StringEnd - decision
Strategy String - description String
- hour String
- hour
End String - logic String
- minute String
- minute
End String - month String
- month
End String - name String
- not
Before String - not
On StringOr After - realm
Id String - resource
Server StringId - year String
- year
End String
Import
Time policies can be imported using the format: {{realmId}}/{{resourceServerId}}/{{policyId}}.
Example:
$ terraform import keycloak_openid_client_time_policy.test my-realm/3bd4a686-1062-4b59-97b8-e4e3f10b99da/63b3cde8-987d-4cd9-9306-1955579281d9
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Keycloak pulumi/pulumi-keycloak
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
keycloakTerraform Provider.
published on Saturday, Feb 21, 2026 by Pulumi
