fortimanager.SystemCertificateOftp
Explore with Pulumi AI
OFTP certificates and keys.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.SystemCertificateOftp("trname", {
comment: "This is a Terraform example change",
mode: "default",
passwords: ["dakdiwX"],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.SystemCertificateOftp("trname",
comment="This is a Terraform example change",
mode="default",
passwords=["dakdiwX"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fortimanager.NewSystemCertificateOftp(ctx, "trname", &fortimanager.SystemCertificateOftpArgs{
Comment: pulumi.String("This is a Terraform example change"),
Mode: pulumi.String("default"),
Passwords: pulumi.StringArray{
pulumi.String("dakdiwX"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;
return await Deployment.RunAsync(() =>
{
var trname = new Fortimanager.SystemCertificateOftp("trname", new()
{
Comment = "This is a Terraform example change",
Mode = "default",
Passwords = new[]
{
"dakdiwX",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemCertificateOftp;
import com.pulumi.fortimanager.SystemCertificateOftpArgs;
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 trname = new SystemCertificateOftp("trname", SystemCertificateOftpArgs.builder()
.comment("This is a Terraform example change")
.mode("default")
.passwords("dakdiwX")
.build());
}
}
resources:
trname:
type: fortimanager:SystemCertificateOftp
properties:
comment: This is a Terraform example change
mode: default
passwords:
- dakdiwX
Create SystemCertificateOftp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SystemCertificateOftp(name: string, args?: SystemCertificateOftpArgs, opts?: CustomResourceOptions);
@overload
def SystemCertificateOftp(resource_name: str,
args: Optional[SystemCertificateOftpArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def SystemCertificateOftp(resource_name: str,
opts: Optional[ResourceOptions] = None,
certificates: Optional[Sequence[str]] = None,
comment: Optional[str] = None,
local: Optional[str] = None,
mode: Optional[str] = None,
passwords: Optional[Sequence[str]] = None,
private_keys: Optional[Sequence[str]] = None,
system_certificate_oftp_id: Optional[str] = None)
func NewSystemCertificateOftp(ctx *Context, name string, args *SystemCertificateOftpArgs, opts ...ResourceOption) (*SystemCertificateOftp, error)
public SystemCertificateOftp(string name, SystemCertificateOftpArgs? args = null, CustomResourceOptions? opts = null)
public SystemCertificateOftp(String name, SystemCertificateOftpArgs args)
public SystemCertificateOftp(String name, SystemCertificateOftpArgs args, CustomResourceOptions options)
type: fortimanager:SystemCertificateOftp
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 SystemCertificateOftpArgs
- 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 SystemCertificateOftpArgs
- 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 SystemCertificateOftpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SystemCertificateOftpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SystemCertificateOftpArgs
- 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 systemCertificateOftpResource = new Fortimanager.SystemCertificateOftp("systemCertificateOftpResource", new()
{
Certificates = new[]
{
"string",
},
Comment = "string",
Local = "string",
Mode = "string",
Passwords = new[]
{
"string",
},
PrivateKeys = new[]
{
"string",
},
SystemCertificateOftpId = "string",
});
example, err := fortimanager.NewSystemCertificateOftp(ctx, "systemCertificateOftpResource", &fortimanager.SystemCertificateOftpArgs{
Certificates: pulumi.StringArray{
pulumi.String("string"),
},
Comment: pulumi.String("string"),
Local: pulumi.String("string"),
Mode: pulumi.String("string"),
Passwords: pulumi.StringArray{
pulumi.String("string"),
},
PrivateKeys: pulumi.StringArray{
pulumi.String("string"),
},
SystemCertificateOftpId: pulumi.String("string"),
})
var systemCertificateOftpResource = new SystemCertificateOftp("systemCertificateOftpResource", SystemCertificateOftpArgs.builder()
.certificates("string")
.comment("string")
.local("string")
.mode("string")
.passwords("string")
.privateKeys("string")
.systemCertificateOftpId("string")
.build());
system_certificate_oftp_resource = fortimanager.SystemCertificateOftp("systemCertificateOftpResource",
certificates=["string"],
comment="string",
local="string",
mode="string",
passwords=["string"],
private_keys=["string"],
system_certificate_oftp_id="string")
const systemCertificateOftpResource = new fortimanager.SystemCertificateOftp("systemCertificateOftpResource", {
certificates: ["string"],
comment: "string",
local: "string",
mode: "string",
passwords: ["string"],
privateKeys: ["string"],
systemCertificateOftpId: "string",
});
type: fortimanager:SystemCertificateOftp
properties:
certificates:
- string
comment: string
local: string
mode: string
passwords:
- string
privateKeys:
- string
systemCertificateOftpId: string
SystemCertificateOftp 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 SystemCertificateOftp resource accepts the following input properties:
- Certificates List<string>
- PEM format certificate.
- Comment string
- OFTP certificate comment.
- Local string
- Choose from a local certificates.
- Mode string
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - Passwords List<string>
- Password for encrypted 'private-key', unset for non-encrypted.
- Private
Keys List<string> - PEM format private key.
- System
Certificate stringOftp Id - an identifier for the resource.
- Certificates []string
- PEM format certificate.
- Comment string
- OFTP certificate comment.
- Local string
- Choose from a local certificates.
- Mode string
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - Passwords []string
- Password for encrypted 'private-key', unset for non-encrypted.
- Private
Keys []string - PEM format private key.
- System
Certificate stringOftp Id - an identifier for the resource.
- certificates List<String>
- PEM format certificate.
- comment String
- OFTP certificate comment.
- local String
- Choose from a local certificates.
- mode String
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - passwords List<String>
- Password for encrypted 'private-key', unset for non-encrypted.
- private
Keys List<String> - PEM format private key.
- system
Certificate StringOftp Id - an identifier for the resource.
- certificates string[]
- PEM format certificate.
- comment string
- OFTP certificate comment.
- local string
- Choose from a local certificates.
- mode string
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - passwords string[]
- Password for encrypted 'private-key', unset for non-encrypted.
- private
Keys string[] - PEM format private key.
- system
Certificate stringOftp Id - an identifier for the resource.
- certificates Sequence[str]
- PEM format certificate.
- comment str
- OFTP certificate comment.
- local str
- Choose from a local certificates.
- mode str
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - passwords Sequence[str]
- Password for encrypted 'private-key', unset for non-encrypted.
- private_
keys Sequence[str] - PEM format private key.
- system_
certificate_ stroftp_ id - an identifier for the resource.
- certificates List<String>
- PEM format certificate.
- comment String
- OFTP certificate comment.
- local String
- Choose from a local certificates.
- mode String
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - passwords List<String>
- Password for encrypted 'private-key', unset for non-encrypted.
- private
Keys List<String> - PEM format private key.
- system
Certificate StringOftp Id - an identifier for the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the SystemCertificateOftp 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 SystemCertificateOftp Resource
Get an existing SystemCertificateOftp 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?: SystemCertificateOftpState, opts?: CustomResourceOptions): SystemCertificateOftp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificates: Optional[Sequence[str]] = None,
comment: Optional[str] = None,
local: Optional[str] = None,
mode: Optional[str] = None,
passwords: Optional[Sequence[str]] = None,
private_keys: Optional[Sequence[str]] = None,
system_certificate_oftp_id: Optional[str] = None) -> SystemCertificateOftp
func GetSystemCertificateOftp(ctx *Context, name string, id IDInput, state *SystemCertificateOftpState, opts ...ResourceOption) (*SystemCertificateOftp, error)
public static SystemCertificateOftp Get(string name, Input<string> id, SystemCertificateOftpState? state, CustomResourceOptions? opts = null)
public static SystemCertificateOftp get(String name, Output<String> id, SystemCertificateOftpState state, CustomResourceOptions options)
resources: _: type: fortimanager:SystemCertificateOftp 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.
- Certificates List<string>
- PEM format certificate.
- Comment string
- OFTP certificate comment.
- Local string
- Choose from a local certificates.
- Mode string
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - Passwords List<string>
- Password for encrypted 'private-key', unset for non-encrypted.
- Private
Keys List<string> - PEM format private key.
- System
Certificate stringOftp Id - an identifier for the resource.
- Certificates []string
- PEM format certificate.
- Comment string
- OFTP certificate comment.
- Local string
- Choose from a local certificates.
- Mode string
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - Passwords []string
- Password for encrypted 'private-key', unset for non-encrypted.
- Private
Keys []string - PEM format private key.
- System
Certificate stringOftp Id - an identifier for the resource.
- certificates List<String>
- PEM format certificate.
- comment String
- OFTP certificate comment.
- local String
- Choose from a local certificates.
- mode String
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - passwords List<String>
- Password for encrypted 'private-key', unset for non-encrypted.
- private
Keys List<String> - PEM format private key.
- system
Certificate StringOftp Id - an identifier for the resource.
- certificates string[]
- PEM format certificate.
- comment string
- OFTP certificate comment.
- local string
- Choose from a local certificates.
- mode string
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - passwords string[]
- Password for encrypted 'private-key', unset for non-encrypted.
- private
Keys string[] - PEM format private key.
- system
Certificate stringOftp Id - an identifier for the resource.
- certificates Sequence[str]
- PEM format certificate.
- comment str
- OFTP certificate comment.
- local str
- Choose from a local certificates.
- mode str
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - passwords Sequence[str]
- Password for encrypted 'private-key', unset for non-encrypted.
- private_
keys Sequence[str] - PEM format private key.
- system_
certificate_ stroftp_ id - an identifier for the resource.
- certificates List<String>
- PEM format certificate.
- comment String
- OFTP certificate comment.
- local String
- Choose from a local certificates.
- mode String
- Mode of certificates used by oftpd. default - Default mode. custom - Use custom certificate. local - Use a local certificate. Valid values:
default
,custom
,local
. - passwords List<String>
- Password for encrypted 'private-key', unset for non-encrypted.
- private
Keys List<String> - PEM format private key.
- system
Certificate StringOftp Id - an identifier for the resource.
Import
System CertificateOftp can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/systemCertificateOftp:SystemCertificateOftp labelname SystemCertificateOftp
$ unset “FORTIMANAGER_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortimanager fortinetdev/terraform-provider-fortimanager
- License
- Notes
- This Pulumi package is based on the
fortimanager
Terraform Provider.