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

fortimanager.SystemFips

Explore with Pulumi AI

Settings for FIPS-CC mode.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname = new fortimanager.SystemFips("trname", {
    entropyToken: "enable",
    reSeedInterval: 1440,
    status: "disable",
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.SystemFips("trname",
    entropy_token="enable",
    re_seed_interval=1440,
    status="disable")
Copy
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.NewSystemFips(ctx, "trname", &fortimanager.SystemFipsArgs{
			EntropyToken:   pulumi.String("enable"),
			ReSeedInterval: pulumi.Float64(1440),
			Status:         pulumi.String("disable"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortimanager.SystemFips("trname", new()
    {
        EntropyToken = "enable",
        ReSeedInterval = 1440,
        Status = "disable",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemFips;
import com.pulumi.fortimanager.SystemFipsArgs;
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 SystemFips("trname", SystemFipsArgs.builder()
            .entropyToken("enable")
            .reSeedInterval(1440)
            .status("disable")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:SystemFips
    properties:
      entropyToken: enable
      reSeedInterval: 1440
      status: disable
Copy

Create SystemFips Resource

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

Constructor syntax

new SystemFips(name: string, args?: SystemFipsArgs, opts?: CustomResourceOptions);
@overload
def SystemFips(resource_name: str,
               args: Optional[SystemFipsArgs] = None,
               opts: Optional[ResourceOptions] = None)

@overload
def SystemFips(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               entropy_token: Optional[str] = None,
               re_seed_interval: Optional[float] = None,
               status: Optional[str] = None,
               system_fips_id: Optional[str] = None)
func NewSystemFips(ctx *Context, name string, args *SystemFipsArgs, opts ...ResourceOption) (*SystemFips, error)
public SystemFips(string name, SystemFipsArgs? args = null, CustomResourceOptions? opts = null)
public SystemFips(String name, SystemFipsArgs args)
public SystemFips(String name, SystemFipsArgs args, CustomResourceOptions options)
type: fortimanager:SystemFips
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args SystemFipsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args SystemFipsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args SystemFipsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args SystemFipsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SystemFipsArgs
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 systemFipsResource = new Fortimanager.SystemFips("systemFipsResource", new()
{
    EntropyToken = "string",
    ReSeedInterval = 0,
    Status = "string",
    SystemFipsId = "string",
});
Copy
example, err := fortimanager.NewSystemFips(ctx, "systemFipsResource", &fortimanager.SystemFipsArgs{
EntropyToken: pulumi.String("string"),
ReSeedInterval: pulumi.Float64(0),
Status: pulumi.String("string"),
SystemFipsId: pulumi.String("string"),
})
Copy
var systemFipsResource = new SystemFips("systemFipsResource", SystemFipsArgs.builder()
    .entropyToken("string")
    .reSeedInterval(0)
    .status("string")
    .systemFipsId("string")
    .build());
Copy
system_fips_resource = fortimanager.SystemFips("systemFipsResource",
    entropy_token="string",
    re_seed_interval=0,
    status="string",
    system_fips_id="string")
Copy
const systemFipsResource = new fortimanager.SystemFips("systemFipsResource", {
    entropyToken: "string",
    reSeedInterval: 0,
    status: "string",
    systemFipsId: "string",
});
Copy
type: fortimanager:SystemFips
properties:
    entropyToken: string
    reSeedInterval: 0
    status: string
    systemFipsId: string
Copy

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

EntropyToken string
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
ReSeedInterval double
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
Status string
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
SystemFipsId string
an identifier for the resource.
EntropyToken string
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
ReSeedInterval float64
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
Status string
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
SystemFipsId string
an identifier for the resource.
entropyToken String
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
reSeedInterval Double
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
status String
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
systemFipsId String
an identifier for the resource.
entropyToken string
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
reSeedInterval number
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
status string
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
systemFipsId string
an identifier for the resource.
entropy_token str
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
re_seed_interval float
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
status str
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
system_fips_id str
an identifier for the resource.
entropyToken String
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
reSeedInterval Number
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
status String
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
systemFipsId String
an identifier for the resource.

Outputs

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

Get an existing SystemFips 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?: SystemFipsState, opts?: CustomResourceOptions): SystemFips
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        entropy_token: Optional[str] = None,
        re_seed_interval: Optional[float] = None,
        status: Optional[str] = None,
        system_fips_id: Optional[str] = None) -> SystemFips
func GetSystemFips(ctx *Context, name string, id IDInput, state *SystemFipsState, opts ...ResourceOption) (*SystemFips, error)
public static SystemFips Get(string name, Input<string> id, SystemFipsState? state, CustomResourceOptions? opts = null)
public static SystemFips get(String name, Output<String> id, SystemFipsState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:SystemFips    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
EntropyToken string
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
ReSeedInterval double
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
Status string
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
SystemFipsId string
an identifier for the resource.
EntropyToken string
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
ReSeedInterval float64
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
Status string
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
SystemFipsId string
an identifier for the resource.
entropyToken String
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
reSeedInterval Double
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
status String
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
systemFipsId String
an identifier for the resource.
entropyToken string
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
reSeedInterval number
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
status string
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
systemFipsId string
an identifier for the resource.
entropy_token str
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
re_seed_interval float
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
status str
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
system_fips_id str
an identifier for the resource.
entropyToken String
Enable/disable entropy token when switching to FIPS mode. enable - Enable entropy token. disable - Disable entropy token. dynamic - Dynamically detect entropy token during bootup. Valid values: enable, disable, dynamic.
reSeedInterval Number
Kernel FIPS-compliant PRNG re-seed interval (0 to 1440 minutes)
status String
Enable/disable FIPS-CC mode. disable - Disable FIPS-CC mode. enable - Enable FIPS-CC mode. Valid values: disable, enable.
systemFipsId String
an identifier for the resource.

Import

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/systemFips:SystemFips labelname SystemFips
Copy

$ 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.