CertificateArgs

data class CertificateArgs(val certificateContent: Output<String>? = null, val iothubName: Output<String>? = null, val isVerified: Output<Boolean>? = null, val name: Output<String>? = null, val resourceGroupName: Output<String>? = null) : ConvertibleToJava<CertificateArgs>

Manages an IotHub Certificate.

Example Usage

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-resources",
location: "West Europe",
});
const exampleIoTHub = new azure.iot.IoTHub("example", {
name: "example",
resourceGroupName: example.name,
location: example.location,
sku: {
name: "B1",
capacity: 1,
},
});
const exampleCertificate = new azure.iot.Certificate("example", {
name: "example",
resourceGroupName: example.name,
iothubName: exampleIoTHub.name,
isVerified: true,
certificateContent: std.filebase64({
input: "example.cer",
}).then(invoke => invoke.result),
});
import pulumi
import pulumi_azure as azure
import pulumi_std as std
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_io_t_hub = azure.iot.IoTHub("example",
name="example",
resource_group_name=example.name,
location=example.location,
sku={
"name": "B1",
"capacity": 1,
})
example_certificate = azure.iot.Certificate("example",
name="example",
resource_group_name=example.name,
iothub_name=example_io_t_hub.name,
is_verified=True,
certificate_content=std.filebase64(input="example.cer").result)
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-resources",
Location = "West Europe",
});
var exampleIoTHub = new Azure.Iot.IoTHub("example", new()
{
Name = "example",
ResourceGroupName = example.Name,
Location = example.Location,
Sku = new Azure.Iot.Inputs.IoTHubSkuArgs
{
Name = "B1",
Capacity = 1,
},
});
var exampleCertificate = new Azure.Iot.Certificate("example", new()
{
Name = "example",
ResourceGroupName = example.Name,
IothubName = exampleIoTHub.Name,
IsVerified = true,
CertificateContent = Std.Filebase64.Invoke(new()
{
Input = "example.cer",
}).Apply(invoke => invoke.Result),
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/iot"
"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-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleIoTHub, err := iot.NewIoTHub(ctx, "example", &iot.IoTHubArgs{
Name: pulumi.String("example"),
ResourceGroupName: example.Name,
Location: example.Location,
Sku: &iot.IoTHubSkuArgs{
Name: pulumi.String("B1"),
Capacity: pulumi.Int(1),
},
})
if err != nil {
return err
}
invokeFilebase64, err := std.Filebase64(ctx, &std.Filebase64Args{
Input: "example.cer",
}, nil)
if err != nil {
return err
}
_, err = iot.NewCertificate(ctx, "example", &iot.CertificateArgs{
Name: pulumi.String("example"),
ResourceGroupName: example.Name,
IothubName: exampleIoTHub.Name,
IsVerified: pulumi.Bool(true),
CertificateContent: pulumi.String(invokeFilebase64.Result),
})
if err != nil {
return err
}
return nil
})
}
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.iot.IoTHub;
import com.pulumi.azure.iot.IoTHubArgs;
import com.pulumi.azure.iot.inputs.IoTHubSkuArgs;
import com.pulumi.azure.iot.Certificate;
import com.pulumi.azure.iot.CertificateArgs;
import com.pulumi.std.StdFunctions;
import com.pulumi.std.inputs.Filebase64Args;
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-resources")
.location("West Europe")
.build());
var exampleIoTHub = new IoTHub("exampleIoTHub", IoTHubArgs.builder()
.name("example")
.resourceGroupName(example.name())
.location(example.location())
.sku(IoTHubSkuArgs.builder()
.name("B1")
.capacity(1)
.build())
.build());
var exampleCertificate = new Certificate("exampleCertificate", CertificateArgs.builder()
.name("example")
.resourceGroupName(example.name())
.iothubName(exampleIoTHub.name())
.isVerified(true)
.certificateContent(StdFunctions.filebase64(Filebase64Args.builder()
.input("example.cer")
.build()).result())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleIoTHub:
type: azure:iot:IoTHub
name: example
properties:
name: example
resourceGroupName: ${example.name}
location: ${example.location}
sku:
name: B1
capacity: '1'
exampleCertificate:
type: azure:iot:Certificate
name: example
properties:
name: example
resourceGroupName: ${example.name}
iothubName: ${exampleIoTHub.name}
isVerified: true
certificateContent:
fn::invoke:
function: std:filebase64
arguments:
input: example.cer
return: result

Import

IoTHub Certificates can be imported using the resource id, e.g.

$ pulumi import azure:iot/certificate:Certificate example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Devices/iotHubs/example/certificates/example

Constructors

Link copied to clipboard
constructor(certificateContent: Output<String>? = null, iothubName: Output<String>? = null, isVerified: Output<Boolean>? = null, name: Output<String>? = null, resourceGroupName: Output<String>? = null)

Properties

Link copied to clipboard
val certificateContent: Output<String>? = null

The Base-64 representation of the X509 leaf certificate .cer file or just a .pem file content.

Link copied to clipboard
val iothubName: Output<String>? = null

The name of the IoTHub that this certificate will be attached to. Changing this forces a new resource to be created.

Link copied to clipboard
val isVerified: Output<Boolean>? = null

Is the certificate verified? Defaults to false.

Link copied to clipboard
val name: Output<String>? = null

Specifies the name of the IotHub Certificate resource. Changing this forces a new resource to be created.

Link copied to clipboard
val resourceGroupName: Output<String>? = null

The name of the resource group under which the IotHub Certificate resource has to be created. Changing this forces a new resource to be created.

Functions

Link copied to clipboard
open override fun toJava(): CertificateArgs