Provider

class Provider : KotlinCustomResource

Manages an Attestation Provider.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.attestation.Provider;
import com.pulumi.azure.attestation.ProviderArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleProvider = new Provider("exampleProvider", ProviderArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.policySigningCertificateData(Files.readString(Paths.get("./example/cert.pem")))
.build());
}
}

Import

Attestation Providers can be imported using the resource id, e.g.

$ pulumi import azure:attestation/provider:Provider example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Attestation/attestationProviders/provider1

Properties

Link copied to clipboard
val attestationUri: Output<String>

The URI of the Attestation Service.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val location: Output<String>

The Azure Region where the Attestation Provider should exist. Changing this forces a new resource to be created.

Link copied to clipboard
val name: Output<String>

The name which should be used for this Attestation Provider. Changing this forces a new resource to be created.

Link copied to clipboard

Specifies the base64 URI Encoded RFC 7519 JWT that should be used for the Attestation Policy.

Link copied to clipboard
Link copied to clipboard

A valid X.509 certificate (Section 4 of RFC4648). Changing this forces a new resource to be created.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

The name of the Resource Group where the attestation provider should exist. Changing this forces a new resource to be created.

Link copied to clipboard

Specifies the base64 URI Encoded RFC 7519 JWT that should be used for the Attestation Policy.

Link copied to clipboard

Specifies the base64 URI Encoded RFC 7519 JWT that should be used for the Attestation Policy.

Link copied to clipboard
val tags: Output<Map<String, String>>?

A mapping of tags which should be assigned to the Attestation Provider.

Link copied to clipboard
val tpmPolicyBase64: Output<String>?

Specifies the base64 URI Encoded RFC 7519 JWT that should be used for the Attestation Policy.

Link copied to clipboard
val trustModel: Output<String>

Trust model used for the Attestation Service.

Link copied to clipboard
val urn: Output<String>