All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.nginx.kotlin.CertificateArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.nginx.kotlin

import com.pulumi.azure.nginx.CertificateArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Manages a Certificate for an NGINX Deployment.
 * ## Example Usage
 * 
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as azure from "@pulumi/azure";
 * import * as std from "@pulumi/std";
 * const example = new azure.core.ResourceGroup("example", {
 *     name: "example-rg",
 *     location: "West Europe",
 * });
 * const examplePublicIp = new azure.network.PublicIp("example", {
 *     name: "example",
 *     resourceGroupName: example.name,
 *     location: example.location,
 *     allocationMethod: "Static",
 *     sku: "Standard",
 *     tags: {
 *         environment: "Production",
 *     },
 * });
 * const exampleVirtualNetwork = new azure.network.VirtualNetwork("example", {
 *     name: "example-vnet",
 *     addressSpaces: ["10.0.0.0/16"],
 *     location: example.location,
 *     resourceGroupName: example.name,
 * });
 * const exampleSubnet = new azure.network.Subnet("example", {
 *     name: "example-subnet",
 *     resourceGroupName: example.name,
 *     virtualNetworkName: exampleVirtualNetwork.name,
 *     addressPrefixes: ["10.0.2.0/24"],
 *     delegations: [{
 *         name: "delegation",
 *         serviceDelegation: {
 *             name: "NGINX.NGINXPLUS/nginxDeployments",
 *             actions: ["Microsoft.Network/virtualNetworks/subnets/join/action"],
 *         },
 *     }],
 * });
 * const exampleDeployment = new azure.nginx.Deployment("example", {
 *     name: "example-nginx",
 *     resourceGroupName: example.name,
 *     sku: "publicpreview_Monthly_gmz7xq9ge3py",
 *     location: example.location,
 *     managedResourceGroup: "example",
 *     diagnoseSupportEnabled: true,
 *     frontendPublic: {
 *         ipAddresses: [examplePublicIp.id],
 *     },
 *     networkInterfaces: [{
 *         subnetId: exampleSubnet.id,
 *     }],
 * });
 * const current = azure.core.getClientConfig({});
 * const exampleKeyVault = new azure.keyvault.KeyVault("example", {
 *     name: "examplekeyvault",
 *     location: example.location,
 *     resourceGroupName: example.name,
 *     tenantId: current.then(current => current.tenantId),
 *     skuName: "premium",
 *     accessPolicies: [{
 *         tenantId: current.then(current => current.tenantId),
 *         objectId: current.then(current => current.objectId),
 *         certificatePermissions: [
 *             "Create",
 *             "Delete",
 *             "DeleteIssuers",
 *             "Get",
 *             "GetIssuers",
 *             "Import",
 *             "List",
 *             "ListIssuers",
 *             "ManageContacts",
 *             "ManageIssuers",
 *             "SetIssuers",
 *             "Update",
 *         ],
 *     }],
 * });
 * const exampleCertificate = new azure.keyvault.Certificate("example", {
 *     name: "imported-cert",
 *     keyVaultId: exampleKeyVault.id,
 *     certificate: {
 *         contents: std.filebase64({
 *             input: "certificate-to-import.pfx",
 *         }).then(invoke => invoke.result),
 *         password: "",
 *     },
 * });
 * const exampleCertificate2 = new azure.nginx.Certificate("example", {
 *     name: "examplecert",
 *     nginxDeploymentId: exampleDeployment.id,
 *     keyVirtualPath: "/src/cert/soservermekey.key",
 *     certificateVirtualPath: "/src/cert/server.cert",
 *     keyVaultSecretId: exampleCertificate.secretId,
 * });
 * ```
 * ```python
 * import pulumi
 * import pulumi_azure as azure
 * import pulumi_std as std
 * example = azure.core.ResourceGroup("example",
 *     name="example-rg",
 *     location="West Europe")
 * example_public_ip = azure.network.PublicIp("example",
 *     name="example",
 *     resource_group_name=example.name,
 *     location=example.location,
 *     allocation_method="Static",
 *     sku="Standard",
 *     tags={
 *         "environment": "Production",
 *     })
 * example_virtual_network = azure.network.VirtualNetwork("example",
 *     name="example-vnet",
 *     address_spaces=["10.0.0.0/16"],
 *     location=example.location,
 *     resource_group_name=example.name)
 * example_subnet = azure.network.Subnet("example",
 *     name="example-subnet",
 *     resource_group_name=example.name,
 *     virtual_network_name=example_virtual_network.name,
 *     address_prefixes=["10.0.2.0/24"],
 *     delegations=[{
 *         "name": "delegation",
 *         "service_delegation": {
 *             "name": "NGINX.NGINXPLUS/nginxDeployments",
 *             "actions": ["Microsoft.Network/virtualNetworks/subnets/join/action"],
 *         },
 *     }])
 * example_deployment = azure.nginx.Deployment("example",
 *     name="example-nginx",
 *     resource_group_name=example.name,
 *     sku="publicpreview_Monthly_gmz7xq9ge3py",
 *     location=example.location,
 *     managed_resource_group="example",
 *     diagnose_support_enabled=True,
 *     frontend_public={
 *         "ip_addresses": [example_public_ip.id],
 *     },
 *     network_interfaces=[{
 *         "subnet_id": example_subnet.id,
 *     }])
 * current = azure.core.get_client_config()
 * example_key_vault = azure.keyvault.KeyVault("example",
 *     name="examplekeyvault",
 *     location=example.location,
 *     resource_group_name=example.name,
 *     tenant_id=current.tenant_id,
 *     sku_name="premium",
 *     access_policies=[{
 *         "tenant_id": current.tenant_id,
 *         "object_id": current.object_id,
 *         "certificate_permissions": [
 *             "Create",
 *             "Delete",
 *             "DeleteIssuers",
 *             "Get",
 *             "GetIssuers",
 *             "Import",
 *             "List",
 *             "ListIssuers",
 *             "ManageContacts",
 *             "ManageIssuers",
 *             "SetIssuers",
 *             "Update",
 *         ],
 *     }])
 * example_certificate = azure.keyvault.Certificate("example",
 *     name="imported-cert",
 *     key_vault_id=example_key_vault.id,
 *     certificate={
 *         "contents": std.filebase64(input="certificate-to-import.pfx").result,
 *         "password": "",
 *     })
 * example_certificate2 = azure.nginx.Certificate("example",
 *     name="examplecert",
 *     nginx_deployment_id=example_deployment.id,
 *     key_virtual_path="/src/cert/soservermekey.key",
 *     certificate_virtual_path="/src/cert/server.cert",
 *     key_vault_secret_id=example_certificate.secret_id)
 * ```
 * ```csharp
 * using System.Collections.Generic;
 * using System.Linq;
 * using Pulumi;
 * using Azure = Pulumi.Azure;
 * using Std = Pulumi.Std;
 * return await Deployment.RunAsync(() =>
 * {
 *     var example = new Azure.Core.ResourceGroup("example", new()
 *     {
 *         Name = "example-rg",
 *         Location = "West Europe",
 *     });
 *     var examplePublicIp = new Azure.Network.PublicIp("example", new()
 *     {
 *         Name = "example",
 *         ResourceGroupName = example.Name,
 *         Location = example.Location,
 *         AllocationMethod = "Static",
 *         Sku = "Standard",
 *         Tags =
 *         {
 *             { "environment", "Production" },
 *         },
 *     });
 *     var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("example", new()
 *     {
 *         Name = "example-vnet",
 *         AddressSpaces = new[]
 *         {
 *             "10.0.0.0/16",
 *         },
 *         Location = example.Location,
 *         ResourceGroupName = example.Name,
 *     });
 *     var exampleSubnet = new Azure.Network.Subnet("example", new()
 *     {
 *         Name = "example-subnet",
 *         ResourceGroupName = example.Name,
 *         VirtualNetworkName = exampleVirtualNetwork.Name,
 *         AddressPrefixes = new[]
 *         {
 *             "10.0.2.0/24",
 *         },
 *         Delegations = new[]
 *         {
 *             new Azure.Network.Inputs.SubnetDelegationArgs
 *             {
 *                 Name = "delegation",
 *                 ServiceDelegation = new Azure.Network.Inputs.SubnetDelegationServiceDelegationArgs
 *                 {
 *                     Name = "NGINX.NGINXPLUS/nginxDeployments",
 *                     Actions = new[]
 *                     {
 *                         "Microsoft.Network/virtualNetworks/subnets/join/action",
 *                     },
 *                 },
 *             },
 *         },
 *     });
 *     var exampleDeployment = new Azure.Nginx.Deployment("example", new()
 *     {
 *         Name = "example-nginx",
 *         ResourceGroupName = example.Name,
 *         Sku = "publicpreview_Monthly_gmz7xq9ge3py",
 *         Location = example.Location,
 *         ManagedResourceGroup = "example",
 *         DiagnoseSupportEnabled = true,
 *         FrontendPublic = new Azure.Nginx.Inputs.DeploymentFrontendPublicArgs
 *         {
 *             IpAddresses = new[]
 *             {
 *                 examplePublicIp.Id,
 *             },
 *         },
 *         NetworkInterfaces = new[]
 *         {
 *             new Azure.Nginx.Inputs.DeploymentNetworkInterfaceArgs
 *             {
 *                 SubnetId = exampleSubnet.Id,
 *             },
 *         },
 *     });
 *     var current = Azure.Core.GetClientConfig.Invoke();
 *     var exampleKeyVault = new Azure.KeyVault.KeyVault("example", new()
 *     {
 *         Name = "examplekeyvault",
 *         Location = example.Location,
 *         ResourceGroupName = example.Name,
 *         TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
 *         SkuName = "premium",
 *         AccessPolicies = new[]
 *         {
 *             new Azure.KeyVault.Inputs.KeyVaultAccessPolicyArgs
 *             {
 *                 TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
 *                 ObjectId = current.Apply(getClientConfigResult => getClientConfigResult.ObjectId),
 *                 CertificatePermissions = new[]
 *                 {
 *                     "Create",
 *                     "Delete",
 *                     "DeleteIssuers",
 *                     "Get",
 *                     "GetIssuers",
 *                     "Import",
 *                     "List",
 *                     "ListIssuers",
 *                     "ManageContacts",
 *                     "ManageIssuers",
 *                     "SetIssuers",
 *                     "Update",
 *                 },
 *             },
 *         },
 *     });
 *     var exampleCertificate = new Azure.KeyVault.Certificate("example", new()
 *     {
 *         Name = "imported-cert",
 *         KeyVaultId = exampleKeyVault.Id,
 *         KeyVaultCertificate = new Azure.KeyVault.Inputs.CertificateCertificateArgs
 *         {
 *             Contents = Std.Filebase64.Invoke(new()
 *             {
 *                 Input = "certificate-to-import.pfx",
 *             }).Apply(invoke => invoke.Result),
 *             Password = "",
 *         },
 *     });
 *     var exampleCertificate2 = new Azure.Nginx.Certificate("example", new()
 *     {
 *         Name = "examplecert",
 *         NginxDeploymentId = exampleDeployment.Id,
 *         KeyVirtualPath = "/src/cert/soservermekey.key",
 *         CertificateVirtualPath = "/src/cert/server.cert",
 *         KeyVaultSecretId = exampleCertificate.SecretId,
 *     });
 * });
 * ```
 * ```go
 * package main
 * import (
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/keyvault"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
 * 	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/nginx"
 * 	"github.com/pulumi/pulumi-std/sdk/go/std"
 * 	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
 * )
 * func main() {
 * 	pulumi.Run(func(ctx *pulumi.Context) error {
 * 		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
 * 			Name:     pulumi.String("example-rg"),
 * 			Location: pulumi.String("West Europe"),
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		examplePublicIp, err := network.NewPublicIp(ctx, "example", &network.PublicIpArgs{
 * 			Name:              pulumi.String("example"),
 * 			ResourceGroupName: example.Name,
 * 			Location:          example.Location,
 * 			AllocationMethod:  pulumi.String("Static"),
 * 			Sku:               pulumi.String("Standard"),
 * 			Tags: pulumi.StringMap{
 * 				"environment": pulumi.String("Production"),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "example", &network.VirtualNetworkArgs{
 * 			Name: pulumi.String("example-vnet"),
 * 			AddressSpaces: pulumi.StringArray{
 * 				pulumi.String("10.0.0.0/16"),
 * 			},
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleSubnet, err := network.NewSubnet(ctx, "example", &network.SubnetArgs{
 * 			Name:               pulumi.String("example-subnet"),
 * 			ResourceGroupName:  example.Name,
 * 			VirtualNetworkName: exampleVirtualNetwork.Name,
 * 			AddressPrefixes: pulumi.StringArray{
 * 				pulumi.String("10.0.2.0/24"),
 * 			},
 * 			Delegations: network.SubnetDelegationArray{
 * 				&network.SubnetDelegationArgs{
 * 					Name: pulumi.String("delegation"),
 * 					ServiceDelegation: &network.SubnetDelegationServiceDelegationArgs{
 * 						Name: pulumi.String("NGINX.NGINXPLUS/nginxDeployments"),
 * 						Actions: pulumi.StringArray{
 * 							pulumi.String("Microsoft.Network/virtualNetworks/subnets/join/action"),
 * 						},
 * 					},
 * 				},
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleDeployment, err := nginx.NewDeployment(ctx, "example", &nginx.DeploymentArgs{
 * 			Name:                   pulumi.String("example-nginx"),
 * 			ResourceGroupName:      example.Name,
 * 			Sku:                    pulumi.String("publicpreview_Monthly_gmz7xq9ge3py"),
 * 			Location:               example.Location,
 * 			ManagedResourceGroup:   pulumi.String("example"),
 * 			DiagnoseSupportEnabled: pulumi.Bool(true),
 * 			FrontendPublic: &nginx.DeploymentFrontendPublicArgs{
 * 				IpAddresses: pulumi.StringArray{
 * 					examplePublicIp.ID(),
 * 				},
 * 			},
 * 			NetworkInterfaces: nginx.DeploymentNetworkInterfaceArray{
 * 				&nginx.DeploymentNetworkInterfaceArgs{
 * 					SubnetId: exampleSubnet.ID(),
 * 				},
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		current, err := core.GetClientConfig(ctx, nil, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleKeyVault, err := keyvault.NewKeyVault(ctx, "example", &keyvault.KeyVaultArgs{
 * 			Name:              pulumi.String("examplekeyvault"),
 * 			Location:          example.Location,
 * 			ResourceGroupName: example.Name,
 * 			TenantId:          pulumi.String(current.TenantId),
 * 			SkuName:           pulumi.String("premium"),
 * 			AccessPolicies: keyvault.KeyVaultAccessPolicyArray{
 * 				&keyvault.KeyVaultAccessPolicyArgs{
 * 					TenantId: pulumi.String(current.TenantId),
 * 					ObjectId: pulumi.String(current.ObjectId),
 * 					CertificatePermissions: pulumi.StringArray{
 * 						pulumi.String("Create"),
 * 						pulumi.String("Delete"),
 * 						pulumi.String("DeleteIssuers"),
 * 						pulumi.String("Get"),
 * 						pulumi.String("GetIssuers"),
 * 						pulumi.String("Import"),
 * 						pulumi.String("List"),
 * 						pulumi.String("ListIssuers"),
 * 						pulumi.String("ManageContacts"),
 * 						pulumi.String("ManageIssuers"),
 * 						pulumi.String("SetIssuers"),
 * 						pulumi.String("Update"),
 * 					},
 * 				},
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		invokeFilebase64, err := std.Filebase64(ctx, &std.Filebase64Args{
 * 			Input: "certificate-to-import.pfx",
 * 		}, nil)
 * 		if err != nil {
 * 			return err
 * 		}
 * 		exampleCertificate, err := keyvault.NewCertificate(ctx, "example", &keyvault.CertificateArgs{
 * 			Name:       pulumi.String("imported-cert"),
 * 			KeyVaultId: exampleKeyVault.ID(),
 * 			Certificate: &keyvault.CertificateCertificateArgs{
 * 				Contents: pulumi.String(invokeFilebase64.Result),
 * 				Password: pulumi.String(""),
 * 			},
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		_, err = nginx.NewCertificate(ctx, "example", &nginx.CertificateArgs{
 * 			Name:                   pulumi.String("examplecert"),
 * 			NginxDeploymentId:      exampleDeployment.ID(),
 * 			KeyVirtualPath:         pulumi.String("/src/cert/soservermekey.key"),
 * 			CertificateVirtualPath: pulumi.String("/src/cert/server.cert"),
 * 			KeyVaultSecretId:       exampleCertificate.SecretId,
 * 		})
 * 		if err != nil {
 * 			return err
 * 		}
 * 		return nil
 * 	})
 * }
 * ```
 * ```java
 * 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.network.PublicIp;
 * import com.pulumi.azure.network.PublicIpArgs;
 * import com.pulumi.azure.network.VirtualNetwork;
 * import com.pulumi.azure.network.VirtualNetworkArgs;
 * import com.pulumi.azure.network.Subnet;
 * import com.pulumi.azure.network.SubnetArgs;
 * import com.pulumi.azure.network.inputs.SubnetDelegationArgs;
 * import com.pulumi.azure.network.inputs.SubnetDelegationServiceDelegationArgs;
 * import com.pulumi.azure.nginx.Deployment;
 * import com.pulumi.azure.nginx.DeploymentArgs;
 * import com.pulumi.azure.nginx.inputs.DeploymentFrontendPublicArgs;
 * import com.pulumi.azure.nginx.inputs.DeploymentNetworkInterfaceArgs;
 * import com.pulumi.azure.core.CoreFunctions;
 * import com.pulumi.azure.keyvault.KeyVault;
 * import com.pulumi.azure.keyvault.KeyVaultArgs;
 * import com.pulumi.azure.keyvault.inputs.KeyVaultAccessPolicyArgs;
 * import com.pulumi.azure.keyvault.Certificate;
 * import com.pulumi.azure.keyvault.CertificateArgs;
 * import com.pulumi.azure.keyvault.inputs.CertificateCertificateArgs;
 * import com.pulumi.azure.nginx.Certificate;
 * import com.pulumi.azure.nginx.CertificateArgs;
 * 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 ResourceGroup("example", ResourceGroupArgs.builder()
 *             .name("example-rg")
 *             .location("West Europe")
 *             .build());
 *         var examplePublicIp = new PublicIp("examplePublicIp", PublicIpArgs.builder()
 *             .name("example")
 *             .resourceGroupName(example.name())
 *             .location(example.location())
 *             .allocationMethod("Static")
 *             .sku("Standard")
 *             .tags(Map.of("environment", "Production"))
 *             .build());
 *         var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()
 *             .name("example-vnet")
 *             .addressSpaces("10.0.0.0/16")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .build());
 *         var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()
 *             .name("example-subnet")
 *             .resourceGroupName(example.name())
 *             .virtualNetworkName(exampleVirtualNetwork.name())
 *             .addressPrefixes("10.0.2.0/24")
 *             .delegations(SubnetDelegationArgs.builder()
 *                 .name("delegation")
 *                 .serviceDelegation(SubnetDelegationServiceDelegationArgs.builder()
 *                     .name("NGINX.NGINXPLUS/nginxDeployments")
 *                     .actions("Microsoft.Network/virtualNetworks/subnets/join/action")
 *                     .build())
 *                 .build())
 *             .build());
 *         var exampleDeployment = new Deployment("exampleDeployment", DeploymentArgs.builder()
 *             .name("example-nginx")
 *             .resourceGroupName(example.name())
 *             .sku("publicpreview_Monthly_gmz7xq9ge3py")
 *             .location(example.location())
 *             .managedResourceGroup("example")
 *             .diagnoseSupportEnabled(true)
 *             .frontendPublic(DeploymentFrontendPublicArgs.builder()
 *                 .ipAddresses(examplePublicIp.id())
 *                 .build())
 *             .networkInterfaces(DeploymentNetworkInterfaceArgs.builder()
 *                 .subnetId(exampleSubnet.id())
 *                 .build())
 *             .build());
 *         final var current = CoreFunctions.getClientConfig();
 *         var exampleKeyVault = new KeyVault("exampleKeyVault", KeyVaultArgs.builder()
 *             .name("examplekeyvault")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
 *             .skuName("premium")
 *             .accessPolicies(KeyVaultAccessPolicyArgs.builder()
 *                 .tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
 *                 .objectId(current.applyValue(getClientConfigResult -> getClientConfigResult.objectId()))
 *                 .certificatePermissions(
 *                     "Create",
 *                     "Delete",
 *                     "DeleteIssuers",
 *                     "Get",
 *                     "GetIssuers",
 *                     "Import",
 *                     "List",
 *                     "ListIssuers",
 *                     "ManageContacts",
 *                     "ManageIssuers",
 *                     "SetIssuers",
 *                     "Update")
 *                 .build())
 *             .build());
 *         var exampleCertificate = new Certificate("exampleCertificate", CertificateArgs.builder()
 *             .name("imported-cert")
 *             .keyVaultId(exampleKeyVault.id())
 *             .certificate(CertificateCertificateArgs.builder()
 *                 .contents(StdFunctions.filebase64(Filebase64Args.builder()
 *                     .input("certificate-to-import.pfx")
 *                     .build()).result())
 *                 .password("")
 *                 .build())
 *             .build());
 *         var exampleCertificate2 = new Certificate("exampleCertificate2", CertificateArgs.builder()
 *             .name("examplecert")
 *             .nginxDeploymentId(exampleDeployment.id())
 *             .keyVirtualPath("/src/cert/soservermekey.key")
 *             .certificateVirtualPath("/src/cert/server.cert")
 *             .keyVaultSecretId(exampleCertificate.secretId())
 *             .build());
 *     }
 * }
 * ```
 * ```yaml
 * resources:
 *   example:
 *     type: azure:core:ResourceGroup
 *     properties:
 *       name: example-rg
 *       location: West Europe
 *   examplePublicIp:
 *     type: azure:network:PublicIp
 *     name: example
 *     properties:
 *       name: example
 *       resourceGroupName: ${example.name}
 *       location: ${example.location}
 *       allocationMethod: Static
 *       sku: Standard
 *       tags:
 *         environment: Production
 *   exampleVirtualNetwork:
 *     type: azure:network:VirtualNetwork
 *     name: example
 *     properties:
 *       name: example-vnet
 *       addressSpaces:
 *         - 10.0.0.0/16
 *       location: ${example.location}
 *       resourceGroupName: ${example.name}
 *   exampleSubnet:
 *     type: azure:network:Subnet
 *     name: example
 *     properties:
 *       name: example-subnet
 *       resourceGroupName: ${example.name}
 *       virtualNetworkName: ${exampleVirtualNetwork.name}
 *       addressPrefixes:
 *         - 10.0.2.0/24
 *       delegations:
 *         - name: delegation
 *           serviceDelegation:
 *             name: NGINX.NGINXPLUS/nginxDeployments
 *             actions:
 *               - Microsoft.Network/virtualNetworks/subnets/join/action
 *   exampleDeployment:
 *     type: azure:nginx:Deployment
 *     name: example
 *     properties:
 *       name: example-nginx
 *       resourceGroupName: ${example.name}
 *       sku: publicpreview_Monthly_gmz7xq9ge3py
 *       location: ${example.location}
 *       managedResourceGroup: example
 *       diagnoseSupportEnabled: true
 *       frontendPublic:
 *         ipAddresses:
 *           - ${examplePublicIp.id}
 *       networkInterfaces:
 *         - subnetId: ${exampleSubnet.id}
 *   exampleKeyVault:
 *     type: azure:keyvault:KeyVault
 *     name: example
 *     properties:
 *       name: examplekeyvault
 *       location: ${example.location}
 *       resourceGroupName: ${example.name}
 *       tenantId: ${current.tenantId}
 *       skuName: premium
 *       accessPolicies:
 *         - tenantId: ${current.tenantId}
 *           objectId: ${current.objectId}
 *           certificatePermissions:
 *             - Create
 *             - Delete
 *             - DeleteIssuers
 *             - Get
 *             - GetIssuers
 *             - Import
 *             - List
 *             - ListIssuers
 *             - ManageContacts
 *             - ManageIssuers
 *             - SetIssuers
 *             - Update
 *   exampleCertificate:
 *     type: azure:keyvault:Certificate
 *     name: example
 *     properties:
 *       name: imported-cert
 *       keyVaultId: ${exampleKeyVault.id}
 *       certificate:
 *         contents:
 *           fn::invoke:
 *             Function: std:filebase64
 *             Arguments:
 *               input: certificate-to-import.pfx
 *             Return: result
 *         password:
 *   exampleCertificate2:
 *     type: azure:nginx:Certificate
 *     name: example
 *     properties:
 *       name: examplecert
 *       nginxDeploymentId: ${exampleDeployment.id}
 *       keyVirtualPath: /src/cert/soservermekey.key
 *       certificateVirtualPath: /src/cert/server.cert
 *       keyVaultSecretId: ${exampleCertificate.secretId}
 * variables:
 *   current:
 *     fn::invoke:
 *       Function: azure:core:getClientConfig
 *       Arguments: {}
 * ```
 * 
 * ## Import
 * An NGINX Certificate can be imported using the `resource id`, e.g.
 * ```sh
 * $ pulumi import azure:nginx/certificate:Certificate example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Nginx.NginxPlus/nginxDeployments/deploy1/certificates/cer1
 * ```
 * @property certificateVirtualPath Specify the path to the certificate file of this certificate.
 * @property keyVaultSecretId Specify the ID of the Key Vault Secret for this certificate.
 * @property keyVirtualPath Specify the path to the key file of this certificate.
 * @property name The name which should be used for this NGINX Certificate. Changing this forces a new NGINX Certificate to be created.
 * @property nginxDeploymentId The ID of the NGINX Deployment that this Certificate should be associated with. Changing this forces a new NGINX Certificate to be created.
 */
public data class CertificateArgs(
    public val certificateVirtualPath: Output? = null,
    public val keyVaultSecretId: Output? = null,
    public val keyVirtualPath: Output? = null,
    public val name: Output? = null,
    public val nginxDeploymentId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.nginx.CertificateArgs =
        com.pulumi.azure.nginx.CertificateArgs.builder()
            .certificateVirtualPath(certificateVirtualPath?.applyValue({ args0 -> args0 }))
            .keyVaultSecretId(keyVaultSecretId?.applyValue({ args0 -> args0 }))
            .keyVirtualPath(keyVirtualPath?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .nginxDeploymentId(nginxDeploymentId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [CertificateArgs].
 */
@PulumiTagMarker
public class CertificateArgsBuilder internal constructor() {
    private var certificateVirtualPath: Output? = null

    private var keyVaultSecretId: Output? = null

    private var keyVirtualPath: Output? = null

    private var name: Output? = null

    private var nginxDeploymentId: Output? = null

    /**
     * @param value Specify the path to the certificate file of this certificate.
     */
    @JvmName("tthjjhfacvrurtdd")
    public suspend fun certificateVirtualPath(`value`: Output) {
        this.certificateVirtualPath = value
    }

    /**
     * @param value Specify the ID of the Key Vault Secret for this certificate.
     */
    @JvmName("atmgorlofcdjqpbw")
    public suspend fun keyVaultSecretId(`value`: Output) {
        this.keyVaultSecretId = value
    }

    /**
     * @param value Specify the path to the key file of this certificate.
     */
    @JvmName("cpvqvxlroesoetdn")
    public suspend fun keyVirtualPath(`value`: Output) {
        this.keyVirtualPath = value
    }

    /**
     * @param value The name which should be used for this NGINX Certificate. Changing this forces a new NGINX Certificate to be created.
     */
    @JvmName("xfrgykjvmsuiyjap")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value The ID of the NGINX Deployment that this Certificate should be associated with. Changing this forces a new NGINX Certificate to be created.
     */
    @JvmName("gqdgvqlyeuxmdcfs")
    public suspend fun nginxDeploymentId(`value`: Output) {
        this.nginxDeploymentId = value
    }

    /**
     * @param value Specify the path to the certificate file of this certificate.
     */
    @JvmName("qtxdpvsaxgoesfxe")
    public suspend fun certificateVirtualPath(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.certificateVirtualPath = mapped
    }

    /**
     * @param value Specify the ID of the Key Vault Secret for this certificate.
     */
    @JvmName("uimjgkyaodxyppje")
    public suspend fun keyVaultSecretId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.keyVaultSecretId = mapped
    }

    /**
     * @param value Specify the path to the key file of this certificate.
     */
    @JvmName("ofpjrywonccefwup")
    public suspend fun keyVirtualPath(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.keyVirtualPath = mapped
    }

    /**
     * @param value The name which should be used for this NGINX Certificate. Changing this forces a new NGINX Certificate to be created.
     */
    @JvmName("uryjhpnroeplwyjh")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value The ID of the NGINX Deployment that this Certificate should be associated with. Changing this forces a new NGINX Certificate to be created.
     */
    @JvmName("nnohxvjujnjonjoy")
    public suspend fun nginxDeploymentId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.nginxDeploymentId = mapped
    }

    internal fun build(): CertificateArgs = CertificateArgs(
        certificateVirtualPath = certificateVirtualPath,
        keyVaultSecretId = keyVaultSecretId,
        keyVirtualPath = keyVirtualPath,
        name = name,
        nginxDeploymentId = nginxDeploymentId,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy