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

fortimanager.SystemGlobalSslciphersuites

Explore with Pulumi AI

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

    Configure preferred SSL/TLS cipher suites

    This resource is a sub resource for variable ssl_cipher_suites of resource fortimanager.SystemGlobal. Conflict and overwrite may occur if use both of them.

    Create SystemGlobalSslciphersuites Resource

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

    Constructor syntax

    new SystemGlobalSslciphersuites(name: string, args?: SystemGlobalSslciphersuitesArgs, opts?: CustomResourceOptions);
    @overload
    def SystemGlobalSslciphersuites(resource_name: str,
                                    args: Optional[SystemGlobalSslciphersuitesArgs] = None,
                                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemGlobalSslciphersuites(resource_name: str,
                                    opts: Optional[ResourceOptions] = None,
                                    cipher: Optional[str] = None,
                                    priority: Optional[float] = None,
                                    system_global_sslciphersuites_id: Optional[str] = None,
                                    version: Optional[str] = None)
    func NewSystemGlobalSslciphersuites(ctx *Context, name string, args *SystemGlobalSslciphersuitesArgs, opts ...ResourceOption) (*SystemGlobalSslciphersuites, error)
    public SystemGlobalSslciphersuites(string name, SystemGlobalSslciphersuitesArgs? args = null, CustomResourceOptions? opts = null)
    public SystemGlobalSslciphersuites(String name, SystemGlobalSslciphersuitesArgs args)
    public SystemGlobalSslciphersuites(String name, SystemGlobalSslciphersuitesArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemGlobalSslciphersuites
    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 SystemGlobalSslciphersuitesArgs
    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 SystemGlobalSslciphersuitesArgs
    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 SystemGlobalSslciphersuitesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemGlobalSslciphersuitesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemGlobalSslciphersuitesArgs
    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 systemGlobalSslciphersuitesResource = new Fortimanager.SystemGlobalSslciphersuites("systemGlobalSslciphersuitesResource", new()
    {
        Cipher = "string",
        Priority = 0,
        SystemGlobalSslciphersuitesId = "string",
        Version = "string",
    });
    
    example, err := fortimanager.NewSystemGlobalSslciphersuites(ctx, "systemGlobalSslciphersuitesResource", &fortimanager.SystemGlobalSslciphersuitesArgs{
    Cipher: pulumi.String("string"),
    Priority: pulumi.Float64(0),
    SystemGlobalSslciphersuitesId: pulumi.String("string"),
    Version: pulumi.String("string"),
    })
    
    var systemGlobalSslciphersuitesResource = new SystemGlobalSslciphersuites("systemGlobalSslciphersuitesResource", SystemGlobalSslciphersuitesArgs.builder()
        .cipher("string")
        .priority(0)
        .systemGlobalSslciphersuitesId("string")
        .version("string")
        .build());
    
    system_global_sslciphersuites_resource = fortimanager.SystemGlobalSslciphersuites("systemGlobalSslciphersuitesResource",
        cipher="string",
        priority=0,
        system_global_sslciphersuites_id="string",
        version="string")
    
    const systemGlobalSslciphersuitesResource = new fortimanager.SystemGlobalSslciphersuites("systemGlobalSslciphersuitesResource", {
        cipher: "string",
        priority: 0,
        systemGlobalSslciphersuitesId: "string",
        version: "string",
    });
    
    type: fortimanager:SystemGlobalSslciphersuites
    properties:
        cipher: string
        priority: 0
        systemGlobalSslciphersuitesId: string
        version: string
    

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

    Cipher string
    Cipher name
    Priority double
    SSL/TLS cipher suites priority.
    SystemGlobalSslciphersuitesId string
    an identifier for the resource with format {{cipher}}.
    Version string
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.
    Cipher string
    Cipher name
    Priority float64
    SSL/TLS cipher suites priority.
    SystemGlobalSslciphersuitesId string
    an identifier for the resource with format {{cipher}}.
    Version string
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.
    cipher String
    Cipher name
    priority Double
    SSL/TLS cipher suites priority.
    systemGlobalSslciphersuitesId String
    an identifier for the resource with format {{cipher}}.
    version String
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.
    cipher string
    Cipher name
    priority number
    SSL/TLS cipher suites priority.
    systemGlobalSslciphersuitesId string
    an identifier for the resource with format {{cipher}}.
    version string
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.
    cipher str
    Cipher name
    priority float
    SSL/TLS cipher suites priority.
    system_global_sslciphersuites_id str
    an identifier for the resource with format {{cipher}}.
    version str
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.
    cipher String
    Cipher name
    priority Number
    SSL/TLS cipher suites priority.
    systemGlobalSslciphersuitesId String
    an identifier for the resource with format {{cipher}}.
    version String
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.

    Outputs

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

    Get an existing SystemGlobalSslciphersuites 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?: SystemGlobalSslciphersuitesState, opts?: CustomResourceOptions): SystemGlobalSslciphersuites
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cipher: Optional[str] = None,
            priority: Optional[float] = None,
            system_global_sslciphersuites_id: Optional[str] = None,
            version: Optional[str] = None) -> SystemGlobalSslciphersuites
    func GetSystemGlobalSslciphersuites(ctx *Context, name string, id IDInput, state *SystemGlobalSslciphersuitesState, opts ...ResourceOption) (*SystemGlobalSslciphersuites, error)
    public static SystemGlobalSslciphersuites Get(string name, Input<string> id, SystemGlobalSslciphersuitesState? state, CustomResourceOptions? opts = null)
    public static SystemGlobalSslciphersuites get(String name, Output<String> id, SystemGlobalSslciphersuitesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemGlobalSslciphersuites    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:
    Cipher string
    Cipher name
    Priority double
    SSL/TLS cipher suites priority.
    SystemGlobalSslciphersuitesId string
    an identifier for the resource with format {{cipher}}.
    Version string
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.
    Cipher string
    Cipher name
    Priority float64
    SSL/TLS cipher suites priority.
    SystemGlobalSslciphersuitesId string
    an identifier for the resource with format {{cipher}}.
    Version string
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.
    cipher String
    Cipher name
    priority Double
    SSL/TLS cipher suites priority.
    systemGlobalSslciphersuitesId String
    an identifier for the resource with format {{cipher}}.
    version String
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.
    cipher string
    Cipher name
    priority number
    SSL/TLS cipher suites priority.
    systemGlobalSslciphersuitesId string
    an identifier for the resource with format {{cipher}}.
    version string
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.
    cipher str
    Cipher name
    priority float
    SSL/TLS cipher suites priority.
    system_global_sslciphersuites_id str
    an identifier for the resource with format {{cipher}}.
    version str
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.
    cipher String
    Cipher name
    priority Number
    SSL/TLS cipher suites priority.
    systemGlobalSslciphersuitesId String
    an identifier for the resource with format {{cipher}}.
    version String
    SSL/TLS version the cipher suite can be used with. tls1.2-or-below - TLS 1.2 or below. tls1.3 - TLS 1.3 Valid values: tls1.2-or-below, tls1.3.

    Import

    System GlobalSslCipherSuites can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemGlobalSslciphersuites:SystemGlobalSslciphersuites labelname {{cipher}}
    

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