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

ionoscloud logo
ionoscloud 6.7.6 published on Monday, Apr 14, 2025 by ionos-cloud

    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 string
    The unique name of the resource.
    args AutoCertificateProviderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args AutoCertificateProviderArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AutoCertificateProviderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args 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",
        },
    });
    
    example, err := ionoscloud.NewAutoCertificateProvider(ctx, "autoCertificateProviderResource", &ionoscloud.AutoCertificateProviderArgs{
    	Email:                     pulumi.String("string"),
    	Server:                    pulumi.String("string"),
    	AutoCertificateProviderId: pulumi.String("string"),
    	ExternalAccountBinding: &ionoscloud.AutoCertificateProviderExternalAccountBindingArgs{
    		KeyId:     pulumi.String("string"),
    		KeySecret: pulumi.String("string"),
    	},
    	Location: pulumi.String("string"),
    	Name:     pulumi.String("string"),
    	Timeouts: &ionoscloud.AutoCertificateProviderTimeoutsArgs{
    		Create:  pulumi.String("string"),
    		Default: pulumi.String("string"),
    		Delete:  pulumi.String("string"),
    		Update:  pulumi.String("string"),
    	},
    })
    
    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());
    
    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",
        })
    
    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",
        },
    });
    
    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
    

    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 string
    The email address of the certificate requester
    Server 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 string
    The email address of the certificate requester
    Server 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 String
    The email address of the certificate requester
    server 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 string
    The email address of the certificate requester
    server 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 str
    The email address of the certificate requester
    server 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 String
    The email address of the certificate requester
    server 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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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 string
    The key ID of the external account binding
    KeySecret string
    The secret of the external account binding
    KeyId string
    The key ID of the external account binding
    KeySecret string
    The secret of the external account binding
    keyId String
    The key ID of the external account binding
    keySecret String
    The secret of the external account binding
    keyId string
    The key ID of the external account binding
    keySecret string
    The secret of the external account binding
    key_id str
    The key ID of the external account binding
    key_secret str
    The secret of the external account binding
    keyId String
    The key ID of the external account binding
    keySecret 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.
    ionoscloud logo
    ionoscloud 6.7.6 published on Monday, Apr 14, 2025 by ionos-cloud