1. Packages
  2. Ionoscloud Provider
  3. API Docs
  4. AutoCertificateProvider
ionoscloud 6.7.6 published on Monday, Apr 14, 2025 by ionos-cloud

ionoscloud.AutoCertificateProvider

Explore with Pulumi AI

Create AutoCertificateProvider Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new AutoCertificateProvider(name: string, args: AutoCertificateProviderArgs, opts?: CustomResourceOptions);
@overload
def AutoCertificateProvider(resource_name: str,
                            args: AutoCertificateProviderArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def AutoCertificateProvider(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            email: Optional[str] = None,
                            server: Optional[str] = None,
                            auto_certificate_provider_id: Optional[str] = None,
                            external_account_binding: Optional[AutoCertificateProviderExternalAccountBindingArgs] = None,
                            location: Optional[str] = None,
                            name: Optional[str] = None,
                            timeouts: Optional[AutoCertificateProviderTimeoutsArgs] = None)
func NewAutoCertificateProvider(ctx *Context, name string, args AutoCertificateProviderArgs, opts ...ResourceOption) (*AutoCertificateProvider, error)
public AutoCertificateProvider(string name, AutoCertificateProviderArgs args, CustomResourceOptions? opts = null)
public AutoCertificateProvider(String name, AutoCertificateProviderArgs args)
public AutoCertificateProvider(String name, AutoCertificateProviderArgs args, CustomResourceOptions options)
type: ionoscloud:AutoCertificateProvider
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AutoCertificateProviderArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AutoCertificateProviderArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AutoCertificateProviderArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AutoCertificateProviderArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AutoCertificateProviderArgs
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 autoCertificateProviderResource = new Ionoscloud.AutoCertificateProvider("autoCertificateProviderResource", new()
{
    Email = "string",
    Server = "string",
    AutoCertificateProviderId = "string",
    ExternalAccountBinding = new Ionoscloud.Inputs.AutoCertificateProviderExternalAccountBindingArgs
    {
        KeyId = "string",
        KeySecret = "string",
    },
    Location = "string",
    Name = "string",
    Timeouts = new Ionoscloud.Inputs.AutoCertificateProviderTimeoutsArgs
    {
        Create = "string",
        Default = "string",
        Delete = "string",
        Update = "string",
    },
});
Copy
example, err := ionoscloud.NewAutoCertificateProvider(ctx, "autoCertificateProviderResource", &ionoscloud.AutoCertificateProviderArgs{
Email: pulumi.String("string"),
Server: pulumi.String("string"),
AutoCertificateProviderId: pulumi.String("string"),
ExternalAccountBinding: &.AutoCertificateProviderExternalAccountBindingArgs{
KeyId: pulumi.String("string"),
KeySecret: pulumi.String("string"),
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Timeouts: &.AutoCertificateProviderTimeoutsArgs{
Create: pulumi.String("string"),
Default: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
Copy
var autoCertificateProviderResource = new AutoCertificateProvider("autoCertificateProviderResource", AutoCertificateProviderArgs.builder()
    .email("string")
    .server("string")
    .autoCertificateProviderId("string")
    .externalAccountBinding(AutoCertificateProviderExternalAccountBindingArgs.builder()
        .keyId("string")
        .keySecret("string")
        .build())
    .location("string")
    .name("string")
    .timeouts(AutoCertificateProviderTimeoutsArgs.builder()
        .create("string")
        .default_("string")
        .delete("string")
        .update("string")
        .build())
    .build());
Copy
auto_certificate_provider_resource = ionoscloud.AutoCertificateProvider("autoCertificateProviderResource",
    email="string",
    server="string",
    auto_certificate_provider_id="string",
    external_account_binding={
        "key_id": "string",
        "key_secret": "string",
    },
    location="string",
    name="string",
    timeouts={
        "create": "string",
        "default": "string",
        "delete": "string",
        "update": "string",
    })
Copy
const autoCertificateProviderResource = new ionoscloud.AutoCertificateProvider("autoCertificateProviderResource", {
    email: "string",
    server: "string",
    autoCertificateProviderId: "string",
    externalAccountBinding: {
        keyId: "string",
        keySecret: "string",
    },
    location: "string",
    name: "string",
    timeouts: {
        create: "string",
        "default": "string",
        "delete": "string",
        update: "string",
    },
});
Copy
type: ionoscloud:AutoCertificateProvider
properties:
    autoCertificateProviderId: string
    email: string
    externalAccountBinding:
        keyId: string
        keySecret: string
    location: string
    name: string
    server: string
    timeouts:
        create: string
        default: string
        delete: string
        update: string
Copy

AutoCertificateProvider 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 AutoCertificateProvider resource accepts the following input properties:

Email This property is required. string
The email address of the certificate requester
Server This property is required. string
The URL of the certificate provider
AutoCertificateProviderId string
ExternalAccountBinding AutoCertificateProviderExternalAccountBinding
Location string
The location of the certificate provider
Name string
The name of the certificate provider
Timeouts AutoCertificateProviderTimeouts
Email This property is required. string
The email address of the certificate requester
Server This property is required. string
The URL of the certificate provider
AutoCertificateProviderId string
ExternalAccountBinding AutoCertificateProviderExternalAccountBindingArgs
Location string
The location of the certificate provider
Name string
The name of the certificate provider
Timeouts AutoCertificateProviderTimeoutsArgs
email This property is required. String
The email address of the certificate requester
server This property is required. String
The URL of the certificate provider
autoCertificateProviderId String
externalAccountBinding AutoCertificateProviderExternalAccountBinding
location String
The location of the certificate provider
name String
The name of the certificate provider
timeouts AutoCertificateProviderTimeouts
email This property is required. string
The email address of the certificate requester
server This property is required. string
The URL of the certificate provider
autoCertificateProviderId string
externalAccountBinding AutoCertificateProviderExternalAccountBinding
location string
The location of the certificate provider
name string
The name of the certificate provider
timeouts AutoCertificateProviderTimeouts
email This property is required. str
The email address of the certificate requester
server This property is required. str
The URL of the certificate provider
auto_certificate_provider_id str
external_account_binding AutoCertificateProviderExternalAccountBindingArgs
location str
The location of the certificate provider
name str
The name of the certificate provider
timeouts AutoCertificateProviderTimeoutsArgs
email This property is required. String
The email address of the certificate requester
server This property is required. String
The URL of the certificate provider
autoCertificateProviderId String
externalAccountBinding Property Map
location String
The location of the certificate provider
name String
The name of the certificate provider
timeouts Property Map

Outputs

All input properties are implicitly available as output properties. Additionally, the AutoCertificateProvider 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 AutoCertificateProvider Resource

Get an existing AutoCertificateProvider 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?: AutoCertificateProviderState, opts?: CustomResourceOptions): AutoCertificateProvider
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        auto_certificate_provider_id: Optional[str] = None,
        email: Optional[str] = None,
        external_account_binding: Optional[AutoCertificateProviderExternalAccountBindingArgs] = None,
        location: Optional[str] = None,
        name: Optional[str] = None,
        server: Optional[str] = None,
        timeouts: Optional[AutoCertificateProviderTimeoutsArgs] = None) -> AutoCertificateProvider
func GetAutoCertificateProvider(ctx *Context, name string, id IDInput, state *AutoCertificateProviderState, opts ...ResourceOption) (*AutoCertificateProvider, error)
public static AutoCertificateProvider Get(string name, Input<string> id, AutoCertificateProviderState? state, CustomResourceOptions? opts = null)
public static AutoCertificateProvider get(String name, Output<String> id, AutoCertificateProviderState state, CustomResourceOptions options)
resources:  _:    type: ionoscloud:AutoCertificateProvider    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
AutoCertificateProviderId string
Email string
The email address of the certificate requester
ExternalAccountBinding AutoCertificateProviderExternalAccountBinding
Location string
The location of the certificate provider
Name string
The name of the certificate provider
Server string
The URL of the certificate provider
Timeouts AutoCertificateProviderTimeouts
AutoCertificateProviderId string
Email string
The email address of the certificate requester
ExternalAccountBinding AutoCertificateProviderExternalAccountBindingArgs
Location string
The location of the certificate provider
Name string
The name of the certificate provider
Server string
The URL of the certificate provider
Timeouts AutoCertificateProviderTimeoutsArgs
autoCertificateProviderId String
email String
The email address of the certificate requester
externalAccountBinding AutoCertificateProviderExternalAccountBinding
location String
The location of the certificate provider
name String
The name of the certificate provider
server String
The URL of the certificate provider
timeouts AutoCertificateProviderTimeouts
autoCertificateProviderId string
email string
The email address of the certificate requester
externalAccountBinding AutoCertificateProviderExternalAccountBinding
location string
The location of the certificate provider
name string
The name of the certificate provider
server string
The URL of the certificate provider
timeouts AutoCertificateProviderTimeouts
auto_certificate_provider_id str
email str
The email address of the certificate requester
external_account_binding AutoCertificateProviderExternalAccountBindingArgs
location str
The location of the certificate provider
name str
The name of the certificate provider
server str
The URL of the certificate provider
timeouts AutoCertificateProviderTimeoutsArgs
autoCertificateProviderId String
email String
The email address of the certificate requester
externalAccountBinding Property Map
location String
The location of the certificate provider
name String
The name of the certificate provider
server String
The URL of the certificate provider
timeouts Property Map

Supporting Types

AutoCertificateProviderExternalAccountBinding
, AutoCertificateProviderExternalAccountBindingArgs

KeyId This property is required. string
The key ID of the external account binding
KeySecret This property is required. string
The secret of the external account binding
KeyId This property is required. string
The key ID of the external account binding
KeySecret This property is required. string
The secret of the external account binding
keyId This property is required. String
The key ID of the external account binding
keySecret This property is required. String
The secret of the external account binding
keyId This property is required. string
The key ID of the external account binding
keySecret This property is required. string
The secret of the external account binding
key_id This property is required. str
The key ID of the external account binding
key_secret This property is required. str
The secret of the external account binding
keyId This property is required. String
The key ID of the external account binding
keySecret This property is required. String
The secret of the external account binding

AutoCertificateProviderTimeouts
, AutoCertificateProviderTimeoutsArgs

Create string
Default string
Delete string
Update string
Create string
Default string
Delete string
Update string
create String
default_ String
delete String
update String
create string
default string
delete string
update string
create String
default String
delete String
update String

Package Details

Repository
ionoscloud ionos-cloud/terraform-provider-ionoscloud
License
Notes
This Pulumi package is based on the ionoscloud Terraform Provider.