platform.OidcConfiguration
Explore with Pulumi AI
Manage OIDC configuration in JFrog platform. See the JFrog OIDC configuration documentation for more information.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as platform from "@pulumi/platform";
const my_github_oidc_configuration = new platform.OidcConfiguration("my-github-oidc-configuration", {
audience: "jfrog-github",
description: "My GitHub OIDC configuration",
issuerUrl: "https://token.actions.githubusercontent.com",
providerType: "GitHub",
});
const my_github_oidc_enterprise_configuration = new platform.OidcConfiguration("my-github-oidc-enterprise-configuration", {
audience: "jfrog-github",
description: "My GitHub OIDC enterprise configuration",
issuerUrl: "https://token.actions.githubusercontent.com/jfrog",
providerType: "GitHub",
});
const my_generic_oidc_configuration = new platform.OidcConfiguration("my-generic-oidc-configuration", {
audience: "jfrog-generic",
description: "My generic OIDC configuration",
issuerUrl: "https://tempurl.org",
providerType: "generic",
});
import pulumi
import pulumi_platform as platform
my_github_oidc_configuration = platform.OidcConfiguration("my-github-oidc-configuration",
audience="jfrog-github",
description="My GitHub OIDC configuration",
issuer_url="https://token.actions.githubusercontent.com",
provider_type="GitHub")
my_github_oidc_enterprise_configuration = platform.OidcConfiguration("my-github-oidc-enterprise-configuration",
audience="jfrog-github",
description="My GitHub OIDC enterprise configuration",
issuer_url="https://token.actions.githubusercontent.com/jfrog",
provider_type="GitHub")
my_generic_oidc_configuration = platform.OidcConfiguration("my-generic-oidc-configuration",
audience="jfrog-generic",
description="My generic OIDC configuration",
issuer_url="https://tempurl.org",
provider_type="generic")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/platform/v2/platform"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := platform.NewOidcConfiguration(ctx, "my-github-oidc-configuration", &platform.OidcConfigurationArgs{
Audience: pulumi.String("jfrog-github"),
Description: pulumi.String("My GitHub OIDC configuration"),
IssuerUrl: pulumi.String("https://token.actions.githubusercontent.com"),
ProviderType: pulumi.String("GitHub"),
})
if err != nil {
return err
}
_, err = platform.NewOidcConfiguration(ctx, "my-github-oidc-enterprise-configuration", &platform.OidcConfigurationArgs{
Audience: pulumi.String("jfrog-github"),
Description: pulumi.String("My GitHub OIDC enterprise configuration"),
IssuerUrl: pulumi.String("https://token.actions.githubusercontent.com/jfrog"),
ProviderType: pulumi.String("GitHub"),
})
if err != nil {
return err
}
_, err = platform.NewOidcConfiguration(ctx, "my-generic-oidc-configuration", &platform.OidcConfigurationArgs{
Audience: pulumi.String("jfrog-generic"),
Description: pulumi.String("My generic OIDC configuration"),
IssuerUrl: pulumi.String("https://tempurl.org"),
ProviderType: pulumi.String("generic"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Platform = Pulumi.Platform;
return await Deployment.RunAsync(() =>
{
var my_github_oidc_configuration = new Platform.OidcConfiguration("my-github-oidc-configuration", new()
{
Audience = "jfrog-github",
Description = "My GitHub OIDC configuration",
IssuerUrl = "https://token.actions.githubusercontent.com",
ProviderType = "GitHub",
});
var my_github_oidc_enterprise_configuration = new Platform.OidcConfiguration("my-github-oidc-enterprise-configuration", new()
{
Audience = "jfrog-github",
Description = "My GitHub OIDC enterprise configuration",
IssuerUrl = "https://token.actions.githubusercontent.com/jfrog",
ProviderType = "GitHub",
});
var my_generic_oidc_configuration = new Platform.OidcConfiguration("my-generic-oidc-configuration", new()
{
Audience = "jfrog-generic",
Description = "My generic OIDC configuration",
IssuerUrl = "https://tempurl.org",
ProviderType = "generic",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.platform.OidcConfiguration;
import com.pulumi.platform.OidcConfigurationArgs;
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 my_github_oidc_configuration = new OidcConfiguration("my-github-oidc-configuration", OidcConfigurationArgs.builder()
.audience("jfrog-github")
.description("My GitHub OIDC configuration")
.issuerUrl("https://token.actions.githubusercontent.com")
.providerType("GitHub")
.build());
var my_github_oidc_enterprise_configuration = new OidcConfiguration("my-github-oidc-enterprise-configuration", OidcConfigurationArgs.builder()
.audience("jfrog-github")
.description("My GitHub OIDC enterprise configuration")
.issuerUrl("https://token.actions.githubusercontent.com/jfrog")
.providerType("GitHub")
.build());
var my_generic_oidc_configuration = new OidcConfiguration("my-generic-oidc-configuration", OidcConfigurationArgs.builder()
.audience("jfrog-generic")
.description("My generic OIDC configuration")
.issuerUrl("https://tempurl.org")
.providerType("generic")
.build());
}
}
resources:
my-github-oidc-configuration:
type: platform:OidcConfiguration
properties:
audience: jfrog-github
description: My GitHub OIDC configuration
issuerUrl: https://token.actions.githubusercontent.com
providerType: GitHub
my-github-oidc-enterprise-configuration:
type: platform:OidcConfiguration
properties:
audience: jfrog-github
description: My GitHub OIDC enterprise configuration
issuerUrl: https://token.actions.githubusercontent.com/jfrog
providerType: GitHub
my-generic-oidc-configuration:
type: platform:OidcConfiguration
properties:
audience: jfrog-generic
description: My generic OIDC configuration
issuerUrl: https://tempurl.org
providerType: generic
Create OidcConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OidcConfiguration(name: string, args: OidcConfigurationArgs, opts?: CustomResourceOptions);
@overload
def OidcConfiguration(resource_name: str,
args: OidcConfigurationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OidcConfiguration(resource_name: str,
opts: Optional[ResourceOptions] = None,
issuer_url: Optional[str] = None,
provider_type: Optional[str] = None,
audience: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
project_key: Optional[str] = None,
use_default_proxy: Optional[bool] = None)
func NewOidcConfiguration(ctx *Context, name string, args OidcConfigurationArgs, opts ...ResourceOption) (*OidcConfiguration, error)
public OidcConfiguration(string name, OidcConfigurationArgs args, CustomResourceOptions? opts = null)
public OidcConfiguration(String name, OidcConfigurationArgs args)
public OidcConfiguration(String name, OidcConfigurationArgs args, CustomResourceOptions options)
type: platform:OidcConfiguration
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 OidcConfigurationArgs
- 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 OidcConfigurationArgs
- 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 OidcConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OidcConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OidcConfigurationArgs
- 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 oidcConfigurationResource = new Platform.OidcConfiguration("oidcConfigurationResource", new()
{
IssuerUrl = "string",
ProviderType = "string",
Audience = "string",
Description = "string",
Name = "string",
ProjectKey = "string",
UseDefaultProxy = false,
});
example, err := platform.NewOidcConfiguration(ctx, "oidcConfigurationResource", &platform.OidcConfigurationArgs{
IssuerUrl: pulumi.String("string"),
ProviderType: pulumi.String("string"),
Audience: pulumi.String("string"),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
ProjectKey: pulumi.String("string"),
UseDefaultProxy: pulumi.Bool(false),
})
var oidcConfigurationResource = new OidcConfiguration("oidcConfigurationResource", OidcConfigurationArgs.builder()
.issuerUrl("string")
.providerType("string")
.audience("string")
.description("string")
.name("string")
.projectKey("string")
.useDefaultProxy(false)
.build());
oidc_configuration_resource = platform.OidcConfiguration("oidcConfigurationResource",
issuer_url="string",
provider_type="string",
audience="string",
description="string",
name="string",
project_key="string",
use_default_proxy=False)
const oidcConfigurationResource = new platform.OidcConfiguration("oidcConfigurationResource", {
issuerUrl: "string",
providerType: "string",
audience: "string",
description: "string",
name: "string",
projectKey: "string",
useDefaultProxy: false,
});
type: platform:OidcConfiguration
properties:
audience: string
description: string
issuerUrl: string
name: string
projectKey: string
providerType: string
useDefaultProxy: false
OidcConfiguration 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 OidcConfiguration resource accepts the following input properties:
- Issuer
Url string - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- Provider
Type string - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - Audience string
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- Description string
- Description of the OIDC provider
- Name string
- Name of the OIDC provider
- Project
Key string - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- Use
Default boolProxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
- Issuer
Url string - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- Provider
Type string - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - Audience string
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- Description string
- Description of the OIDC provider
- Name string
- Name of the OIDC provider
- Project
Key string - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- Use
Default boolProxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
- issuer
Url String - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- provider
Type String - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - audience String
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- description String
- Description of the OIDC provider
- name String
- Name of the OIDC provider
- project
Key String - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- use
Default BooleanProxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
- issuer
Url string - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- provider
Type string - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - audience string
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- description string
- Description of the OIDC provider
- name string
- Name of the OIDC provider
- project
Key string - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- use
Default booleanProxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
- issuer_
url str - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- provider_
type str - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - audience str
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- description str
- Description of the OIDC provider
- name str
- Name of the OIDC provider
- project_
key str - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- use_
default_ boolproxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
- issuer
Url String - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- provider
Type String - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - audience String
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- description String
- Description of the OIDC provider
- name String
- Name of the OIDC provider
- project
Key String - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- use
Default BooleanProxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
Outputs
All input properties are implicitly available as output properties. Additionally, the OidcConfiguration 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 OidcConfiguration Resource
Get an existing OidcConfiguration 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?: OidcConfigurationState, opts?: CustomResourceOptions): OidcConfiguration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
audience: Optional[str] = None,
description: Optional[str] = None,
issuer_url: Optional[str] = None,
name: Optional[str] = None,
project_key: Optional[str] = None,
provider_type: Optional[str] = None,
use_default_proxy: Optional[bool] = None) -> OidcConfiguration
func GetOidcConfiguration(ctx *Context, name string, id IDInput, state *OidcConfigurationState, opts ...ResourceOption) (*OidcConfiguration, error)
public static OidcConfiguration Get(string name, Input<string> id, OidcConfigurationState? state, CustomResourceOptions? opts = null)
public static OidcConfiguration get(String name, Output<String> id, OidcConfigurationState state, CustomResourceOptions options)
resources: _: type: platform:OidcConfiguration 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.
- Audience string
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- Description string
- Description of the OIDC provider
- Issuer
Url string - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- Name string
- Name of the OIDC provider
- Project
Key string - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- Provider
Type string - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - Use
Default boolProxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
- Audience string
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- Description string
- Description of the OIDC provider
- Issuer
Url string - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- Name string
- Name of the OIDC provider
- Project
Key string - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- Provider
Type string - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - Use
Default boolProxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
- audience String
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- description String
- Description of the OIDC provider
- issuer
Url String - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- name String
- Name of the OIDC provider
- project
Key String - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- provider
Type String - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - use
Default BooleanProxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
- audience string
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- description string
- Description of the OIDC provider
- issuer
Url string - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- name string
- Name of the OIDC provider
- project
Key string - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- provider
Type string - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - use
Default booleanProxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
- audience str
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- description str
- Description of the OIDC provider
- issuer_
url str - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- name str
- Name of the OIDC provider
- project_
key str - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- provider_
type str - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - use_
default_ boolproxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
- audience String
- Informational field that you can use to include details of the audience that uses the OIDC configuration.
- description String
- Description of the OIDC provider
- issuer
Url String - OIDC issuer URL. For GitHub actions, the URL must start with https://token.actions.githubusercontent.com.
- name String
- Name of the OIDC provider
- project
Key String - If set, this Identity Configuration will be available in the scope of the given project (editable by platform admin and project admin). If not set, this Identity Configuration will be global and only editable by platform admin. Once set, the projectKey cannot be changed.
- provider
Type String - Type of OIDC provider. Can be
generic
,GitHub
, orAzure
. - use
Default BooleanProxy - This enables and disables the default proxy for OIDC integration. If enabled, the OIDC mechanism will utilize the default proxy for all OIDC requests. If disabled, the OIDC mechanism does not use any proxy for all OIDC requests. Before enabling this functionality you must configure the default proxy.
Import
$ pulumi import platform:index/oidcConfiguration:OidcConfiguration my-oidc-configuration my-oidc-configuration
$ pulumi import platform:index/oidcConfiguration:OidcConfiguration my-oidc-configuration my-oidc-configuration:myproj
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- platform jfrog/terraform-provider-platform
- License
- Notes
- This Pulumi package is based on the
platform
Terraform Provider.