Trust Provider Args
data class TrustProviderArgs(val description: Output<String>? = null, val deviceOptions: Output<TrustProviderDeviceOptionsArgs>? = null, val deviceTrustProviderType: Output<String>? = null, val nativeApplicationOidcOptions: Output<TrustProviderNativeApplicationOidcOptionsArgs>? = null, val oidcOptions: Output<TrustProviderOidcOptionsArgs>? = null, val policyReferenceName: Output<String>? = null, val sseSpecification: Output<TrustProviderSseSpecificationArgs>? = null, val tags: Output<Map<String, String>>? = null, val trustProviderType: Output<String>? = null, val userTrustProviderType: Output<String>? = null) : ConvertibleToJava<TrustProviderArgs>
Resource for managing a Verified Access Trust Provider.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.verifiedaccess.TrustProvider("example", {
policyReferenceName: "example",
trustProviderType: "user",
userTrustProviderType: "iam-identity-center",
});
Content copied to clipboard
import pulumi
import pulumi_aws as aws
example = aws.verifiedaccess.TrustProvider("example",
policy_reference_name="example",
trust_provider_type="user",
user_trust_provider_type="iam-identity-center")
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.VerifiedAccess.TrustProvider("example", new()
{
PolicyReferenceName = "example",
TrustProviderType = "user",
UserTrustProviderType = "iam-identity-center",
});
});
Content copied to clipboard
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/verifiedaccess"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := verifiedaccess.NewTrustProvider(ctx, "example", &verifiedaccess.TrustProviderArgs{
PolicyReferenceName: pulumi.String("example"),
TrustProviderType: pulumi.String("user"),
UserTrustProviderType: pulumi.String("iam-identity-center"),
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.verifiedaccess.TrustProvider;
import com.pulumi.aws.verifiedaccess.TrustProviderArgs;
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 example = new TrustProvider("example", TrustProviderArgs.builder()
.policyReferenceName("example")
.trustProviderType("user")
.userTrustProviderType("iam-identity-center")
.build());
}
}
Content copied to clipboard
resources:
example:
type: aws:verifiedaccess:TrustProvider
properties:
policyReferenceName: example
trustProviderType: user
userTrustProviderType: iam-identity-center
Content copied to clipboard
Import
Using pulumi import
, import Transfer Workflows using the id
. For example:
$ pulumi import aws:verifiedaccess/trustProvider:TrustProvider example vatp-8012925589
Content copied to clipboard
Constructors
Link copied to clipboard
constructor(description: Output<String>? = null, deviceOptions: Output<TrustProviderDeviceOptionsArgs>? = null, deviceTrustProviderType: Output<String>? = null, nativeApplicationOidcOptions: Output<TrustProviderNativeApplicationOidcOptionsArgs>? = null, oidcOptions: Output<TrustProviderOidcOptionsArgs>? = null, policyReferenceName: Output<String>? = null, sseSpecification: Output<TrustProviderSseSpecificationArgs>? = null, tags: Output<Map<String, String>>? = null, trustProviderType: Output<String>? = null, userTrustProviderType: Output<String>? = null)
Properties
Link copied to clipboard
A description for the AWS Verified Access trust provider.
Link copied to clipboard
A block of options for device identity based trust providers.
Link copied to clipboard
The type of device-based trust provider.
Link copied to clipboard
The OpenID Connect details for an Native Application OIDC, user-identity based trust provider.
Link copied to clipboard
The OpenID Connect details for an oidc-type, user-identity based trust provider.
Link copied to clipboard
The identifier to be used when working with policy rules.
Link copied to clipboard
Link copied to clipboard
The type of trust provider can be either user or device-based. The following arguments are optional:
Link copied to clipboard
The type of user-based trust provider.