outscale.ServerCertificate
Explore with Pulumi AI
Manages a server certificate.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fs from "fs";
import * as outscale from "@pulumi/outscale";
const serverCertificate01 = new outscale.ServerCertificate("serverCertificate01", {
body: fs.readFileSync("<PATH>", "utf8"),
chain: fs.readFileSync("<PATH>", "utf8"),
privateKey: fs.readFileSync("<PATH>", "utf8"),
path: "<PATH>",
});
import pulumi
import pulumi_outscale as outscale
server_certificate01 = outscale.ServerCertificate("serverCertificate01",
body=(lambda path: open(path).read())("<PATH>"),
chain=(lambda path: open(path).read())("<PATH>"),
private_key=(lambda path: open(path).read())("<PATH>"),
path="<PATH>")
package main
import (
"os"
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func readFileOrPanic(path string) pulumi.StringPtrInput {
data, err := os.ReadFile(path)
if err != nil {
panic(err.Error())
}
return pulumi.String(string(data))
}
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewServerCertificate(ctx, "serverCertificate01", &outscale.ServerCertificateArgs{
Body: pulumi.String(readFileOrPanic("<PATH>")),
Chain: pulumi.String(readFileOrPanic("<PATH>")),
PrivateKey: pulumi.String(readFileOrPanic("<PATH>")),
Path: pulumi.String("<PATH>"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var serverCertificate01 = new Outscale.ServerCertificate("serverCertificate01", new()
{
Body = File.ReadAllText("<PATH>"),
Chain = File.ReadAllText("<PATH>"),
PrivateKey = File.ReadAllText("<PATH>"),
Path = "<PATH>",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.ServerCertificate;
import com.pulumi.outscale.ServerCertificateArgs;
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 serverCertificate01 = new ServerCertificate("serverCertificate01", ServerCertificateArgs.builder()
.body(Files.readString(Paths.get("<PATH>")))
.chain(Files.readString(Paths.get("<PATH>")))
.privateKey(Files.readString(Paths.get("<PATH>")))
.path("<PATH>")
.build());
}
}
resources:
serverCertificate01:
type: outscale:ServerCertificate
properties:
body:
fn::readFile: <PATH>
chain:
fn::readFile: <PATH>
privateKey:
fn::readFile: <PATH>
path: <PATH>
Create ServerCertificate Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServerCertificate(name: string, args?: ServerCertificateArgs, opts?: CustomResourceOptions);
@overload
def ServerCertificate(resource_name: str,
args: Optional[ServerCertificateArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ServerCertificate(resource_name: str,
opts: Optional[ResourceOptions] = None,
body: Optional[str] = None,
chain: Optional[str] = None,
dry_run: Optional[str] = None,
name: Optional[str] = None,
path: Optional[str] = None,
private_key: Optional[str] = None,
server_certificate_id: Optional[str] = None)
func NewServerCertificate(ctx *Context, name string, args *ServerCertificateArgs, opts ...ResourceOption) (*ServerCertificate, error)
public ServerCertificate(string name, ServerCertificateArgs? args = null, CustomResourceOptions? opts = null)
public ServerCertificate(String name, ServerCertificateArgs args)
public ServerCertificate(String name, ServerCertificateArgs args, CustomResourceOptions options)
type: outscale:ServerCertificate
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 ServerCertificateArgs
- 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 ServerCertificateArgs
- 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 ServerCertificateArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerCertificateArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerCertificateArgs
- 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 serverCertificateResource = new Outscale.ServerCertificate("serverCertificateResource", new()
{
Body = "string",
Chain = "string",
DryRun = "string",
Name = "string",
Path = "string",
PrivateKey = "string",
ServerCertificateId = "string",
});
example, err := outscale.NewServerCertificate(ctx, "serverCertificateResource", &outscale.ServerCertificateArgs{
Body: pulumi.String("string"),
Chain: pulumi.String("string"),
DryRun: pulumi.String("string"),
Name: pulumi.String("string"),
Path: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
ServerCertificateId: pulumi.String("string"),
})
var serverCertificateResource = new ServerCertificate("serverCertificateResource", ServerCertificateArgs.builder()
.body("string")
.chain("string")
.dryRun("string")
.name("string")
.path("string")
.privateKey("string")
.serverCertificateId("string")
.build());
server_certificate_resource = outscale.ServerCertificate("serverCertificateResource",
body="string",
chain="string",
dry_run="string",
name="string",
path="string",
private_key="string",
server_certificate_id="string")
const serverCertificateResource = new outscale.ServerCertificate("serverCertificateResource", {
body: "string",
chain: "string",
dryRun: "string",
name: "string",
path: "string",
privateKey: "string",
serverCertificateId: "string",
});
type: outscale:ServerCertificate
properties:
body: string
chain: string
dryRun: string
name: string
path: string
privateKey: string
serverCertificateId: string
ServerCertificate 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 ServerCertificate resource accepts the following input properties:
- Body string
- The PEM-encoded X509 certificate.
- Chain string
- The PEM-encoded intermediate certification authorities.
- Dry
Run string - Name string
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - Path string
- The path to the server certificate, set to a slash (
/
) if not specified. - Private
Key string - The PEM-encoded private key matching the certificate.
- Server
Certificate stringId - The ID of the server certificate.
- Body string
- The PEM-encoded X509 certificate.
- Chain string
- The PEM-encoded intermediate certification authorities.
- Dry
Run string - Name string
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - Path string
- The path to the server certificate, set to a slash (
/
) if not specified. - Private
Key string - The PEM-encoded private key matching the certificate.
- Server
Certificate stringId - The ID of the server certificate.
- body String
- The PEM-encoded X509 certificate.
- chain String
- The PEM-encoded intermediate certification authorities.
- dry
Run String - name String
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - path String
- The path to the server certificate, set to a slash (
/
) if not specified. - private
Key String - The PEM-encoded private key matching the certificate.
- server
Certificate StringId - The ID of the server certificate.
- body string
- The PEM-encoded X509 certificate.
- chain string
- The PEM-encoded intermediate certification authorities.
- dry
Run string - name string
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - path string
- The path to the server certificate, set to a slash (
/
) if not specified. - private
Key string - The PEM-encoded private key matching the certificate.
- server
Certificate stringId - The ID of the server certificate.
- body str
- The PEM-encoded X509 certificate.
- chain str
- The PEM-encoded intermediate certification authorities.
- dry_
run str - name str
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - path str
- The path to the server certificate, set to a slash (
/
) if not specified. - private_
key str - The PEM-encoded private key matching the certificate.
- server_
certificate_ strid - The ID of the server certificate.
- body String
- The PEM-encoded X509 certificate.
- chain String
- The PEM-encoded intermediate certification authorities.
- dry
Run String - name String
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - path String
- The path to the server certificate, set to a slash (
/
) if not specified. - private
Key String - The PEM-encoded private key matching the certificate.
- server
Certificate StringId - The ID of the server certificate.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServerCertificate resource produces the following output properties:
- Expiration
Date string - The date on which the server certificate expires.
- Id string
- The provider-assigned unique ID for this managed resource.
- Orn string
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- Request
Id string - Upload
Date string - The date on which the server certificate has been uploaded.
- Expiration
Date string - The date on which the server certificate expires.
- Id string
- The provider-assigned unique ID for this managed resource.
- Orn string
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- Request
Id string - Upload
Date string - The date on which the server certificate has been uploaded.
- expiration
Date String - The date on which the server certificate expires.
- id String
- The provider-assigned unique ID for this managed resource.
- orn String
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- request
Id String - upload
Date String - The date on which the server certificate has been uploaded.
- expiration
Date string - The date on which the server certificate expires.
- id string
- The provider-assigned unique ID for this managed resource.
- orn string
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- request
Id string - upload
Date string - The date on which the server certificate has been uploaded.
- expiration_
date str - The date on which the server certificate expires.
- id str
- The provider-assigned unique ID for this managed resource.
- orn str
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- request_
id str - upload_
date str - The date on which the server certificate has been uploaded.
- expiration
Date String - The date on which the server certificate expires.
- id String
- The provider-assigned unique ID for this managed resource.
- orn String
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- request
Id String - upload
Date String - The date on which the server certificate has been uploaded.
Look up Existing ServerCertificate Resource
Get an existing ServerCertificate 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?: ServerCertificateState, opts?: CustomResourceOptions): ServerCertificate
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
body: Optional[str] = None,
chain: Optional[str] = None,
dry_run: Optional[str] = None,
expiration_date: Optional[str] = None,
name: Optional[str] = None,
orn: Optional[str] = None,
path: Optional[str] = None,
private_key: Optional[str] = None,
request_id: Optional[str] = None,
server_certificate_id: Optional[str] = None,
upload_date: Optional[str] = None) -> ServerCertificate
func GetServerCertificate(ctx *Context, name string, id IDInput, state *ServerCertificateState, opts ...ResourceOption) (*ServerCertificate, error)
public static ServerCertificate Get(string name, Input<string> id, ServerCertificateState? state, CustomResourceOptions? opts = null)
public static ServerCertificate get(String name, Output<String> id, ServerCertificateState state, CustomResourceOptions options)
resources: _: type: outscale:ServerCertificate 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.
- Body string
- The PEM-encoded X509 certificate.
- Chain string
- The PEM-encoded intermediate certification authorities.
- Dry
Run string - Expiration
Date string - The date on which the server certificate expires.
- Name string
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - Orn string
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- Path string
- The path to the server certificate, set to a slash (
/
) if not specified. - Private
Key string - The PEM-encoded private key matching the certificate.
- Request
Id string - Server
Certificate stringId - The ID of the server certificate.
- Upload
Date string - The date on which the server certificate has been uploaded.
- Body string
- The PEM-encoded X509 certificate.
- Chain string
- The PEM-encoded intermediate certification authorities.
- Dry
Run string - Expiration
Date string - The date on which the server certificate expires.
- Name string
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - Orn string
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- Path string
- The path to the server certificate, set to a slash (
/
) if not specified. - Private
Key string - The PEM-encoded private key matching the certificate.
- Request
Id string - Server
Certificate stringId - The ID of the server certificate.
- Upload
Date string - The date on which the server certificate has been uploaded.
- body String
- The PEM-encoded X509 certificate.
- chain String
- The PEM-encoded intermediate certification authorities.
- dry
Run String - expiration
Date String - The date on which the server certificate expires.
- name String
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - orn String
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- path String
- The path to the server certificate, set to a slash (
/
) if not specified. - private
Key String - The PEM-encoded private key matching the certificate.
- request
Id String - server
Certificate StringId - The ID of the server certificate.
- upload
Date String - The date on which the server certificate has been uploaded.
- body string
- The PEM-encoded X509 certificate.
- chain string
- The PEM-encoded intermediate certification authorities.
- dry
Run string - expiration
Date string - The date on which the server certificate expires.
- name string
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - orn string
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- path string
- The path to the server certificate, set to a slash (
/
) if not specified. - private
Key string - The PEM-encoded private key matching the certificate.
- request
Id string - server
Certificate stringId - The ID of the server certificate.
- upload
Date string - The date on which the server certificate has been uploaded.
- body str
- The PEM-encoded X509 certificate.
- chain str
- The PEM-encoded intermediate certification authorities.
- dry_
run str - expiration_
date str - The date on which the server certificate expires.
- name str
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - orn str
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- path str
- The path to the server certificate, set to a slash (
/
) if not specified. - private_
key str - The PEM-encoded private key matching the certificate.
- request_
id str - server_
certificate_ strid - The ID of the server certificate.
- upload_
date str - The date on which the server certificate has been uploaded.
- body String
- The PEM-encoded X509 certificate.
- chain String
- The PEM-encoded intermediate certification authorities.
- dry
Run String - expiration
Date String - The date on which the server certificate expires.
- name String
- A unique name for the certificate. Constraints: 1-128 alphanumeric characters, pluses (
+
), equals (=
), commas (,
), periods (.
), at signs (@
), minuses (-
), or underscores (_
). - orn String
- The OUTSCALE Resource Name (ORN) of the server certificate. For more information, see Resource Identifiers > OUTSCALE Resource Names (ORNs).
- path String
- The path to the server certificate, set to a slash (
/
) if not specified. - private
Key String - The PEM-encoded private key matching the certificate.
- request
Id String - server
Certificate StringId - The ID of the server certificate.
- upload
Date String - The date on which the server certificate has been uploaded.
Import
A server certificate can be imported using its ID. For example:
console
$ pulumi import outscale:index/serverCertificate:ServerCertificate ImportedServerCertificate 0123456789
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.