GetServer
Use this data source to retrieve an auth server from Okta.
Example Usage
using Pulumi;
using Okta = Pulumi.Okta;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Okta.Auth.GetServer.InvokeAsync(new Okta.Auth.GetServerArgs
{
Name = "Example Auth",
}));
}
}
Coming soon!
import pulumi
import pulumi_okta as okta
example = okta.auth.get_server(name="Example Auth")import * as pulumi from "@pulumi/pulumi";
import * as okta from "@pulumi/okta";
const example = pulumi.output(okta.auth.getServer({
name: "Example Auth",
}, { async: true }));Using GetServer
function getServer(args: GetServerArgs, opts?: InvokeOptions): Promise<GetServerResult>function get_server(name=None, opts=None)func LookupServer(ctx *Context, args *LookupServerArgs, opts ...InvokeOption) (*LookupServerResult, error)Note: This function is named
LookupServerin the Go SDK.
public static class GetServer {
public static Task<GetServerResult> InvokeAsync(GetServerArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
GetServer Result
The following output properties are available:
- Audiences List<string>
array of audiences,
- Credentials
Last stringRotated last time credentials were rotated.
- Credentials
Next stringRotation next time credentials will be rotated
- Credentials
Rotation stringMode mode of credential rotation, auto or manual.
- Description string
description of Authorization server.
- Id string
The provider-assigned unique ID for this managed resource.
- Kid string
auth server key id.
- Name string
The name of the auth server.
- Status string
the activation status of the authorization server.
- Audiences []string
array of audiences,
- Credentials
Last stringRotated last time credentials were rotated.
- Credentials
Next stringRotation next time credentials will be rotated
- Credentials
Rotation stringMode mode of credential rotation, auto or manual.
- Description string
description of Authorization server.
- Id string
The provider-assigned unique ID for this managed resource.
- Kid string
auth server key id.
- Name string
The name of the auth server.
- Status string
the activation status of the authorization server.
- audiences string[]
array of audiences,
- credentials
Last stringRotated last time credentials were rotated.
- credentials
Next stringRotation next time credentials will be rotated
- credentials
Rotation stringMode mode of credential rotation, auto or manual.
- description string
description of Authorization server.
- id string
The provider-assigned unique ID for this managed resource.
- kid string
auth server key id.
- name string
The name of the auth server.
- status string
the activation status of the authorization server.
- audiences List[str]
array of audiences,
- credentials_
last_ strrotated last time credentials were rotated.
- credentials_
next_ strrotation next time credentials will be rotated
- credentials_
rotation_ strmode mode of credential rotation, auto or manual.
- description str
description of Authorization server.
- id str
The provider-assigned unique ID for this managed resource.
- kid str
auth server key id.
- name str
The name of the auth server.
- status str
the activation status of the authorization server.
Package Details
- Repository
- https://github.com/pulumi/pulumi-okta
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oktaTerraform Provider.