This provider is currently in preview.
pulumiservice.OidcIssuer
Explore with Pulumi AI
This provider is currently in preview.
An OIDC issuer registration with Pulumi.
Create OidcIssuer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OidcIssuer(name: string, args: OidcIssuerArgs, opts?: CustomResourceOptions);
@overload
def OidcIssuer(resource_name: str,
args: OidcIssuerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OidcIssuer(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
organization: Optional[str] = None,
url: Optional[str] = None,
max_expiration_seconds: Optional[int] = None,
policies: Optional[Sequence[AuthPolicyDefinitionArgs]] = None,
thumbprints: Optional[Sequence[str]] = None)
func NewOidcIssuer(ctx *Context, name string, args OidcIssuerArgs, opts ...ResourceOption) (*OidcIssuer, error)
public OidcIssuer(string name, OidcIssuerArgs args, CustomResourceOptions? opts = null)
public OidcIssuer(String name, OidcIssuerArgs args)
public OidcIssuer(String name, OidcIssuerArgs args, CustomResourceOptions options)
type: pulumiservice:OidcIssuer
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 OidcIssuerArgs
- 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 OidcIssuerArgs
- 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 OidcIssuerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OidcIssuerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OidcIssuerArgs
- 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 oidcIssuerResource = new PulumiService.OidcIssuer("oidcIssuerResource", new()
{
Name = "string",
Organization = "string",
Url = "string",
MaxExpirationSeconds = 0,
Policies = new[]
{
new PulumiService.Inputs.AuthPolicyDefinitionArgs
{
Decision = PulumiService.AuthPolicyDecision.Deny,
Rules =
{
{ "string", "string" },
},
TokenType = PulumiService.AuthPolicyTokenType.Personal,
AuthorizedPermissions = new[]
{
PulumiService.AuthPolicyPermissionLevel.Standard,
},
RunnerID = "string",
TeamName = "string",
UserLogin = "string",
},
},
Thumbprints = new[]
{
"string",
},
});
example, err := pulumiservice.NewOidcIssuer(ctx, "oidcIssuerResource", &pulumiservice.OidcIssuerArgs{
Name: pulumi.String("string"),
Organization: pulumi.String("string"),
Url: pulumi.String("string"),
MaxExpirationSeconds: pulumi.Int(0),
Policies: pulumiservice.AuthPolicyDefinitionArray{
&pulumiservice.AuthPolicyDefinitionArgs{
Decision: pulumiservice.AuthPolicyDecisionDeny,
Rules: pulumi.StringMap{
"string": pulumi.String("string"),
},
TokenType: pulumiservice.AuthPolicyTokenTypePersonal,
AuthorizedPermissions: pulumiservice.AuthPolicyPermissionLevelArray{
pulumiservice.AuthPolicyPermissionLevelStandard,
},
RunnerID: pulumi.String("string"),
TeamName: pulumi.String("string"),
UserLogin: pulumi.String("string"),
},
},
Thumbprints: pulumi.StringArray{
pulumi.String("string"),
},
})
var oidcIssuerResource = new OidcIssuer("oidcIssuerResource", OidcIssuerArgs.builder()
.name("string")
.organization("string")
.url("string")
.maxExpirationSeconds(0)
.policies(AuthPolicyDefinitionArgs.builder()
.decision("deny")
.rules(Map.of("string", "string"))
.tokenType("personal")
.authorizedPermissions("standard")
.runnerID("string")
.teamName("string")
.userLogin("string")
.build())
.thumbprints("string")
.build());
oidc_issuer_resource = pulumiservice.OidcIssuer("oidcIssuerResource",
name="string",
organization="string",
url="string",
max_expiration_seconds=0,
policies=[{
"decision": pulumiservice.AuthPolicyDecision.DENY,
"rules": {
"string": "string",
},
"token_type": pulumiservice.AuthPolicyTokenType.PERSONAL,
"authorized_permissions": [pulumiservice.AuthPolicyPermissionLevel.STANDARD],
"runner_id": "string",
"team_name": "string",
"user_login": "string",
}],
thumbprints=["string"])
const oidcIssuerResource = new pulumiservice.OidcIssuer("oidcIssuerResource", {
name: "string",
organization: "string",
url: "string",
maxExpirationSeconds: 0,
policies: [{
decision: pulumiservice.AuthPolicyDecision.Deny,
rules: {
string: "string",
},
tokenType: pulumiservice.AuthPolicyTokenType.Personal,
authorizedPermissions: [pulumiservice.AuthPolicyPermissionLevel.Standard],
runnerID: "string",
teamName: "string",
userLogin: "string",
}],
thumbprints: ["string"],
});
type: pulumiservice:OidcIssuer
properties:
maxExpirationSeconds: 0
name: string
organization: string
policies:
- authorizedPermissions:
- standard
decision: deny
rules:
string: string
runnerID: string
teamName: string
tokenType: personal
userLogin: string
thumbprints:
- string
url: string
OidcIssuer 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 OidcIssuer resource accepts the following input properties:
- Name string
- Issuer name.
- Organization string
- Organization name.
- Url string
- The OIDC issuer URL.
- Max
Expiration intSeconds - The maximum duration of the Pulumi access token working after an exchange, specified in seconds.
- Policies
List<Pulumi.
Pulumi Service. Inputs. Auth Policy Definition> - The auth policies for this Oidc Issuer.
- Thumbprints List<string>
- The thumbprints of issuer's TLS certificates. By default, Pulumi will store the thumbprint of the certificate used to serve the OpenID configuration. If the provider uses multiple certificates to serve content, it is required to manually configure these.
- Name string
- Issuer name.
- Organization string
- Organization name.
- Url string
- The OIDC issuer URL.
- Max
Expiration intSeconds - The maximum duration of the Pulumi access token working after an exchange, specified in seconds.
- Policies
[]Auth
Policy Definition Args - The auth policies for this Oidc Issuer.
- Thumbprints []string
- The thumbprints of issuer's TLS certificates. By default, Pulumi will store the thumbprint of the certificate used to serve the OpenID configuration. If the provider uses multiple certificates to serve content, it is required to manually configure these.
- name String
- Issuer name.
- organization String
- Organization name.
- url String
- The OIDC issuer URL.
- max
Expiration IntegerSeconds - The maximum duration of the Pulumi access token working after an exchange, specified in seconds.
- policies
List<Auth
Policy Definition> - The auth policies for this Oidc Issuer.
- thumbprints List<String>
- The thumbprints of issuer's TLS certificates. By default, Pulumi will store the thumbprint of the certificate used to serve the OpenID configuration. If the provider uses multiple certificates to serve content, it is required to manually configure these.
- name string
- Issuer name.
- organization string
- Organization name.
- url string
- The OIDC issuer URL.
- max
Expiration numberSeconds - The maximum duration of the Pulumi access token working after an exchange, specified in seconds.
- policies
Auth
Policy Definition[] - The auth policies for this Oidc Issuer.
- thumbprints string[]
- The thumbprints of issuer's TLS certificates. By default, Pulumi will store the thumbprint of the certificate used to serve the OpenID configuration. If the provider uses multiple certificates to serve content, it is required to manually configure these.
- name str
- Issuer name.
- organization str
- Organization name.
- url str
- The OIDC issuer URL.
- max_
expiration_ intseconds - The maximum duration of the Pulumi access token working after an exchange, specified in seconds.
- policies
Sequence[Auth
Policy Definition Args] - The auth policies for this Oidc Issuer.
- thumbprints Sequence[str]
- The thumbprints of issuer's TLS certificates. By default, Pulumi will store the thumbprint of the certificate used to serve the OpenID configuration. If the provider uses multiple certificates to serve content, it is required to manually configure these.
- name String
- Issuer name.
- organization String
- Organization name.
- url String
- The OIDC issuer URL.
- max
Expiration NumberSeconds - The maximum duration of the Pulumi access token working after an exchange, specified in seconds.
- policies List<Property Map>
- The auth policies for this Oidc Issuer.
- thumbprints List<String>
- The thumbprints of issuer's TLS certificates. By default, Pulumi will store the thumbprint of the certificate used to serve the OpenID configuration. If the provider uses multiple certificates to serve content, it is required to manually configure these.
Outputs
All input properties are implicitly available as output properties. Additionally, the OidcIssuer 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.
Supporting Types
AuthPolicyDecision, AuthPolicyDecisionArgs
- Deny
- denyA deny rule for Oidc Issuer Policy.
- Allow
- allowAn allow rule for Oidc Issuer Policy.
- Auth
Policy Decision Deny - denyA deny rule for Oidc Issuer Policy.
- Auth
Policy Decision Allow - allowAn allow rule for Oidc Issuer Policy.
- Deny
- denyA deny rule for Oidc Issuer Policy.
- Allow
- allowAn allow rule for Oidc Issuer Policy.
- Deny
- denyA deny rule for Oidc Issuer Policy.
- Allow
- allowAn allow rule for Oidc Issuer Policy.
- DENY
- denyA deny rule for Oidc Issuer Policy.
- ALLOW
- allowAn allow rule for Oidc Issuer Policy.
- "deny"
- denyA deny rule for Oidc Issuer Policy.
- "allow"
- allowAn allow rule for Oidc Issuer Policy.
AuthPolicyDefinition, AuthPolicyDefinitionArgs
- Decision
Pulumi.
Pulumi Service. Auth Policy Decision - The rule type of this policy definition
- Rules Dictionary<string, string>
- OIDC rules to set for this policy.
- Token
Type Pulumi.Pulumi Service. Auth Policy Token Type - The token type for this policy definition
- List<Pulumi.
Pulumi Service. Auth Policy Permission Level> - The permission level for organization tokens.
- Runner
ID string - The runner ID for deployment runner tokens.
- Team
Name string - The team name for team tokens.
- User
Login string - The user login for personal tokens.
- Decision
Auth
Policy Decision - The rule type of this policy definition
- Rules map[string]string
- OIDC rules to set for this policy.
- Token
Type AuthPolicy Token Type - The token type for this policy definition
- []Auth
Policy Permission Level - The permission level for organization tokens.
- Runner
ID string - The runner ID for deployment runner tokens.
- Team
Name string - The team name for team tokens.
- User
Login string - The user login for personal tokens.
- decision
Auth
Policy Decision - The rule type of this policy definition
- rules Map<String,String>
- OIDC rules to set for this policy.
- token
Type AuthPolicy Token Type - The token type for this policy definition
- List<Auth
Policy Permission Level> - The permission level for organization tokens.
- runner
ID String - The runner ID for deployment runner tokens.
- team
Name String - The team name for team tokens.
- user
Login String - The user login for personal tokens.
- decision
Auth
Policy Decision - The rule type of this policy definition
- rules {[key: string]: string}
- OIDC rules to set for this policy.
- token
Type AuthPolicy Token Type - The token type for this policy definition
- Auth
Policy Permission Level[] - The permission level for organization tokens.
- runner
ID string - The runner ID for deployment runner tokens.
- team
Name string - The team name for team tokens.
- user
Login string - The user login for personal tokens.
- decision
Auth
Policy Decision - The rule type of this policy definition
- rules Mapping[str, str]
- OIDC rules to set for this policy.
- token_
type AuthPolicy Token Type - The token type for this policy definition
- Sequence[Auth
Policy Permission Level] - The permission level for organization tokens.
- runner_
id str - The runner ID for deployment runner tokens.
- team_
name str - The team name for team tokens.
- user_
login str - The user login for personal tokens.
- decision "deny" | "allow"
- The rule type of this policy definition
- rules Map<String>
- OIDC rules to set for this policy.
- token
Type "personal" | "team" | "organization" | "runner" - The token type for this policy definition
- List<"standard" | "admin">
- The permission level for organization tokens.
- runner
ID String - The runner ID for deployment runner tokens.
- team
Name String - The team name for team tokens.
- user
Login String - The user login for personal tokens.
AuthPolicyPermissionLevel, AuthPolicyPermissionLevelArgs
- Standard
- standardStandard level of permissions.
- Admin
- adminAdmin level of permissions.
- Auth
Policy Permission Level Standard - standardStandard level of permissions.
- Auth
Policy Permission Level Admin - adminAdmin level of permissions.
- Standard
- standardStandard level of permissions.
- Admin
- adminAdmin level of permissions.
- Standard
- standardStandard level of permissions.
- Admin
- adminAdmin level of permissions.
- STANDARD
- standardStandard level of permissions.
- ADMIN
- adminAdmin level of permissions.
- "standard"
- standardStandard level of permissions.
- "admin"
- adminAdmin level of permissions.
AuthPolicyTokenType, AuthPolicyTokenTypeArgs
- Personal
- personalPersonal Pulumi token. Requires userLogin field to be filled.
- Team
- teamTeam Pulumi token. Requires teamName field to be filled.
- Organization
- organizationOrganization Pulumi token. Requires authorizedPermissions field to be filled.
- Runner
- runnerDeployment Runner Pulumi token. Requires runnerID field to be filled.
- Auth
Policy Token Type Personal - personalPersonal Pulumi token. Requires userLogin field to be filled.
- Auth
Policy Token Type Team - teamTeam Pulumi token. Requires teamName field to be filled.
- Auth
Policy Token Type Organization - organizationOrganization Pulumi token. Requires authorizedPermissions field to be filled.
- Auth
Policy Token Type Runner - runnerDeployment Runner Pulumi token. Requires runnerID field to be filled.
- Personal
- personalPersonal Pulumi token. Requires userLogin field to be filled.
- Team
- teamTeam Pulumi token. Requires teamName field to be filled.
- Organization
- organizationOrganization Pulumi token. Requires authorizedPermissions field to be filled.
- Runner
- runnerDeployment Runner Pulumi token. Requires runnerID field to be filled.
- Personal
- personalPersonal Pulumi token. Requires userLogin field to be filled.
- Team
- teamTeam Pulumi token. Requires teamName field to be filled.
- Organization
- organizationOrganization Pulumi token. Requires authorizedPermissions field to be filled.
- Runner
- runnerDeployment Runner Pulumi token. Requires runnerID field to be filled.
- PERSONAL
- personalPersonal Pulumi token. Requires userLogin field to be filled.
- TEAM
- teamTeam Pulumi token. Requires teamName field to be filled.
- ORGANIZATION
- organizationOrganization Pulumi token. Requires authorizedPermissions field to be filled.
- RUNNER
- runnerDeployment Runner Pulumi token. Requires runnerID field to be filled.
- "personal"
- personalPersonal Pulumi token. Requires userLogin field to be filled.
- "team"
- teamTeam Pulumi token. Requires teamName field to be filled.
- "organization"
- organizationOrganization Pulumi token. Requires authorizedPermissions field to be filled.
- "runner"
- runnerDeployment Runner Pulumi token. Requires runnerID field to be filled.
Package Details
- Repository
- pulumiservice pulumi/pulumi-pulumiservice
- License
- Apache-2.0
This provider is currently in preview.