fortios.system.Fipscc
Explore with Pulumi AI
Configure FIPS-CC mode.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortios from "@pulumiverse/fortios";
const trname = new fortios.system.Fipscc("trname", {
    entropyToken: "enable",
    keyGenerationSelfTest: "disable",
    selfTestPeriod: 1440,
    status: "disable",
});
import pulumi
import pulumiverse_fortios as fortios
trname = fortios.system.Fipscc("trname",
    entropy_token="enable",
    key_generation_self_test="disable",
    self_test_period=1440,
    status="disable")
package main
import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/system"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := system.NewFipscc(ctx, "trname", &system.FipsccArgs{
			EntropyToken:          pulumi.String("enable"),
			KeyGenerationSelfTest: pulumi.String("disable"),
			SelfTestPeriod:        pulumi.Int(1440),
			Status:                pulumi.String("disable"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortios = Pulumiverse.Fortios;
return await Deployment.RunAsync(() => 
{
    var trname = new Fortios.System.Fipscc("trname", new()
    {
        EntropyToken = "enable",
        KeyGenerationSelfTest = "disable",
        SelfTestPeriod = 1440,
        Status = "disable",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortios.system.Fipscc;
import com.pulumi.fortios.system.FipsccArgs;
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 Fipscc("trname", FipsccArgs.builder()
            .entropyToken("enable")
            .keyGenerationSelfTest("disable")
            .selfTestPeriod(1440)
            .status("disable")
            .build());
    }
}
resources:
  trname:
    type: fortios:system:Fipscc
    properties:
      entropyToken: enable
      keyGenerationSelfTest: disable
      selfTestPeriod: 1440
      status: disable
Create Fipscc Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Fipscc(name: string, args?: FipsccArgs, opts?: CustomResourceOptions);@overload
def Fipscc(resource_name: str,
           args: Optional[FipsccArgs] = None,
           opts: Optional[ResourceOptions] = None)
@overload
def Fipscc(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           entropy_token: Optional[str] = None,
           key_generation_self_test: Optional[str] = None,
           self_test_period: Optional[int] = None,
           status: Optional[str] = None,
           vdomparam: Optional[str] = None)func NewFipscc(ctx *Context, name string, args *FipsccArgs, opts ...ResourceOption) (*Fipscc, error)public Fipscc(string name, FipsccArgs? args = null, CustomResourceOptions? opts = null)
public Fipscc(String name, FipsccArgs args)
public Fipscc(String name, FipsccArgs args, CustomResourceOptions options)
type: fortios:system:Fipscc
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 FipsccArgs
- 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 FipsccArgs
- 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 FipsccArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FipsccArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FipsccArgs
- 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 fipsccResource = new Fortios.System.Fipscc("fipsccResource", new()
{
    EntropyToken = "string",
    KeyGenerationSelfTest = "string",
    SelfTestPeriod = 0,
    Status = "string",
    Vdomparam = "string",
});
example, err := system.NewFipscc(ctx, "fipsccResource", &system.FipsccArgs{
	EntropyToken:          pulumi.String("string"),
	KeyGenerationSelfTest: pulumi.String("string"),
	SelfTestPeriod:        pulumi.Int(0),
	Status:                pulumi.String("string"),
	Vdomparam:             pulumi.String("string"),
})
var fipsccResource = new Fipscc("fipsccResource", FipsccArgs.builder()
    .entropyToken("string")
    .keyGenerationSelfTest("string")
    .selfTestPeriod(0)
    .status("string")
    .vdomparam("string")
    .build());
fipscc_resource = fortios.system.Fipscc("fipsccResource",
    entropy_token="string",
    key_generation_self_test="string",
    self_test_period=0,
    status="string",
    vdomparam="string")
const fipsccResource = new fortios.system.Fipscc("fipsccResource", {
    entropyToken: "string",
    keyGenerationSelfTest: "string",
    selfTestPeriod: 0,
    status: "string",
    vdomparam: "string",
});
type: fortios:system:Fipscc
properties:
    entropyToken: string
    keyGenerationSelfTest: string
    selfTestPeriod: 0
    status: string
    vdomparam: string
Fipscc 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 Fipscc resource accepts the following input properties:
- EntropyToken string
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- KeyGeneration stringSelf Test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- SelfTest intPeriod 
- Self test period.
- Status string
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- EntropyToken string
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- KeyGeneration stringSelf Test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- SelfTest intPeriod 
- Self test period.
- Status string
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- entropyToken String
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- keyGeneration StringSelf Test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- selfTest IntegerPeriod 
- Self test period.
- status String
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- entropyToken string
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- keyGeneration stringSelf Test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- selfTest numberPeriod 
- Self test period.
- status string
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- entropy_token str
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- key_generation_ strself_ test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- self_test_ intperiod 
- Self test period.
- status str
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- entropyToken String
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- keyGeneration StringSelf Test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- selfTest NumberPeriod 
- Self test period.
- status String
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Outputs
All input properties are implicitly available as output properties. Additionally, the Fipscc 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 Fipscc Resource
Get an existing Fipscc 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?: FipsccState, opts?: CustomResourceOptions): Fipscc@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        entropy_token: Optional[str] = None,
        key_generation_self_test: Optional[str] = None,
        self_test_period: Optional[int] = None,
        status: Optional[str] = None,
        vdomparam: Optional[str] = None) -> Fipsccfunc GetFipscc(ctx *Context, name string, id IDInput, state *FipsccState, opts ...ResourceOption) (*Fipscc, error)public static Fipscc Get(string name, Input<string> id, FipsccState? state, CustomResourceOptions? opts = null)public static Fipscc get(String name, Output<String> id, FipsccState state, CustomResourceOptions options)resources:  _:    type: fortios:system:Fipscc    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.
- EntropyToken string
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- KeyGeneration stringSelf Test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- SelfTest intPeriod 
- Self test period.
- Status string
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- EntropyToken string
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- KeyGeneration stringSelf Test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- SelfTest intPeriod 
- Self test period.
- Status string
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- entropyToken String
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- keyGeneration StringSelf Test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- selfTest IntegerPeriod 
- Self test period.
- status String
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- entropyToken string
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- keyGeneration stringSelf Test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- selfTest numberPeriod 
- Self test period.
- status string
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- entropy_token str
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- key_generation_ strself_ test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- self_test_ intperiod 
- Self test period.
- status str
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- entropyToken String
- Enable/disable/dynamic entropy token. Valid values: enable,disable,dynamic.
- keyGeneration StringSelf Test 
- Enable/disable self tests after key generation. Valid values: enable,disable.
- selfTest NumberPeriod 
- Self test period.
- status String
- Enable/disable FIPS-CC mode. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Import
System FipsCc can be imported using any of these accepted formats:
$ pulumi import fortios:system/fipscc:Fipscc labelname SystemFipsCc
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:system/fipscc:Fipscc labelname SystemFipsCc
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the fortiosTerraform Provider.
