1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectVpnCertificateRemote
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.ObjectVpnCertificateRemote

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    Remote certificate as a PEM file.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectVpnCertificateRemote("trname", {
        range: "vdom",
        source: "user",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectVpnCertificateRemote("trname",
        range="vdom",
        source="user")
    
    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.NewObjectVpnCertificateRemote(ctx, "trname", &fortimanager.ObjectVpnCertificateRemoteArgs{
    			Range:  pulumi.String("vdom"),
    			Source: pulumi.String("user"),
    		})
    		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.ObjectVpnCertificateRemote("trname", new()
        {
            Range = "vdom",
            Source = "user",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectVpnCertificateRemote;
    import com.pulumi.fortimanager.ObjectVpnCertificateRemoteArgs;
    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 ObjectVpnCertificateRemote("trname", ObjectVpnCertificateRemoteArgs.builder()
                .range("vdom")
                .source("user")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectVpnCertificateRemote
        properties:
          range: vdom
          source: user
    

    Create ObjectVpnCertificateRemote Resource

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

    Constructor syntax

    new ObjectVpnCertificateRemote(name: string, args?: ObjectVpnCertificateRemoteArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectVpnCertificateRemote(resource_name: str,
                                   args: Optional[ObjectVpnCertificateRemoteArgs] = None,
                                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectVpnCertificateRemote(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   adom: Optional[str] = None,
                                   name: Optional[str] = None,
                                   object_vpn_certificate_remote_id: Optional[str] = None,
                                   range: Optional[str] = None,
                                   remote: Optional[str] = None,
                                   scopetype: Optional[str] = None,
                                   source: Optional[str] = None)
    func NewObjectVpnCertificateRemote(ctx *Context, name string, args *ObjectVpnCertificateRemoteArgs, opts ...ResourceOption) (*ObjectVpnCertificateRemote, error)
    public ObjectVpnCertificateRemote(string name, ObjectVpnCertificateRemoteArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectVpnCertificateRemote(String name, ObjectVpnCertificateRemoteArgs args)
    public ObjectVpnCertificateRemote(String name, ObjectVpnCertificateRemoteArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectVpnCertificateRemote
    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 ObjectVpnCertificateRemoteArgs
    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 ObjectVpnCertificateRemoteArgs
    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 ObjectVpnCertificateRemoteArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectVpnCertificateRemoteArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectVpnCertificateRemoteArgs
    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 objectVpnCertificateRemoteResource = new Fortimanager.ObjectVpnCertificateRemote("objectVpnCertificateRemoteResource", new()
    {
        Adom = "string",
        Name = "string",
        ObjectVpnCertificateRemoteId = "string",
        Range = "string",
        Remote = "string",
        Scopetype = "string",
        Source = "string",
    });
    
    example, err := fortimanager.NewObjectVpnCertificateRemote(ctx, "objectVpnCertificateRemoteResource", &fortimanager.ObjectVpnCertificateRemoteArgs{
    Adom: pulumi.String("string"),
    Name: pulumi.String("string"),
    ObjectVpnCertificateRemoteId: pulumi.String("string"),
    Range: pulumi.String("string"),
    Remote: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    Source: pulumi.String("string"),
    })
    
    var objectVpnCertificateRemoteResource = new ObjectVpnCertificateRemote("objectVpnCertificateRemoteResource", ObjectVpnCertificateRemoteArgs.builder()
        .adom("string")
        .name("string")
        .objectVpnCertificateRemoteId("string")
        .range("string")
        .remote("string")
        .scopetype("string")
        .source("string")
        .build());
    
    object_vpn_certificate_remote_resource = fortimanager.ObjectVpnCertificateRemote("objectVpnCertificateRemoteResource",
        adom="string",
        name="string",
        object_vpn_certificate_remote_id="string",
        range="string",
        remote="string",
        scopetype="string",
        source="string")
    
    const objectVpnCertificateRemoteResource = new fortimanager.ObjectVpnCertificateRemote("objectVpnCertificateRemoteResource", {
        adom: "string",
        name: "string",
        objectVpnCertificateRemoteId: "string",
        range: "string",
        remote: "string",
        scopetype: "string",
        source: "string",
    });
    
    type: fortimanager:ObjectVpnCertificateRemote
    properties:
        adom: string
        name: string
        objectVpnCertificateRemoteId: string
        range: string
        remote: string
        scopetype: string
        source: string
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Name string
    Name.
    ObjectVpnCertificateRemoteId string
    an identifier for the resource with format {{name}}.
    Range string
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    Remote string
    Remote certificate.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Source string
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Name string
    Name.
    ObjectVpnCertificateRemoteId string
    an identifier for the resource with format {{name}}.
    Range string
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    Remote string
    Remote certificate.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Source string
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Name.
    objectVpnCertificateRemoteId String
    an identifier for the resource with format {{name}}.
    range String
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    remote String
    Remote certificate.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    source String
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name string
    Name.
    objectVpnCertificateRemoteId string
    an identifier for the resource with format {{name}}.
    range string
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    remote string
    Remote certificate.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    source string
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name str
    Name.
    object_vpn_certificate_remote_id str
    an identifier for the resource with format {{name}}.
    range str
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    remote str
    Remote certificate.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    source str
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Name.
    objectVpnCertificateRemoteId String
    an identifier for the resource with format {{name}}.
    range String
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    remote String
    Remote certificate.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    source String
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.

    Outputs

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

    Get an existing ObjectVpnCertificateRemote 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?: ObjectVpnCertificateRemoteState, opts?: CustomResourceOptions): ObjectVpnCertificateRemote
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            name: Optional[str] = None,
            object_vpn_certificate_remote_id: Optional[str] = None,
            range: Optional[str] = None,
            remote: Optional[str] = None,
            scopetype: Optional[str] = None,
            source: Optional[str] = None) -> ObjectVpnCertificateRemote
    func GetObjectVpnCertificateRemote(ctx *Context, name string, id IDInput, state *ObjectVpnCertificateRemoteState, opts ...ResourceOption) (*ObjectVpnCertificateRemote, error)
    public static ObjectVpnCertificateRemote Get(string name, Input<string> id, ObjectVpnCertificateRemoteState? state, CustomResourceOptions? opts = null)
    public static ObjectVpnCertificateRemote get(String name, Output<String> id, ObjectVpnCertificateRemoteState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectVpnCertificateRemote    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Name string
    Name.
    ObjectVpnCertificateRemoteId string
    an identifier for the resource with format {{name}}.
    Range string
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    Remote string
    Remote certificate.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Source string
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Name string
    Name.
    ObjectVpnCertificateRemoteId string
    an identifier for the resource with format {{name}}.
    Range string
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    Remote string
    Remote certificate.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    Source string
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Name.
    objectVpnCertificateRemoteId String
    an identifier for the resource with format {{name}}.
    range String
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    remote String
    Remote certificate.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    source String
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name string
    Name.
    objectVpnCertificateRemoteId string
    an identifier for the resource with format {{name}}.
    range string
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    remote string
    Remote certificate.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    source string
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name str
    Name.
    object_vpn_certificate_remote_id str
    an identifier for the resource with format {{name}}.
    range str
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    remote str
    Remote certificate.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    source str
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    name String
    Name.
    objectVpnCertificateRemoteId String
    an identifier for the resource with format {{name}}.
    range String
    Either the global or VDOM IP address range for the remote certificate. Valid values: global, vdom.
    remote String
    Remote certificate.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    source String
    Remote certificate source type. Valid values: factory, user, bundle, fortiguard.

    Import

    ObjectVpn CertificateRemote can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectVpnCertificateRemote:ObjectVpnCertificateRemote labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev