fortimanager.ObjectAuthenticationScheme
Explore with Pulumi AI
Configure Authentication Schemes.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";
const trname = new fortimanager.ObjectAuthenticationScheme("trname", {
fssoGuest: "enable",
methods: ["basic"],
requireTfa: "disable",
});
import pulumi
import pulumi_fortimanager as fortimanager
trname = fortimanager.ObjectAuthenticationScheme("trname",
fsso_guest="enable",
methods=["basic"],
require_tfa="disable")
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.NewObjectAuthenticationScheme(ctx, "trname", &fortimanager.ObjectAuthenticationSchemeArgs{
FssoGuest: pulumi.String("enable"),
Methods: pulumi.StringArray{
pulumi.String("basic"),
},
RequireTfa: pulumi.String("disable"),
})
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.ObjectAuthenticationScheme("trname", new()
{
FssoGuest = "enable",
Methods = new[]
{
"basic",
},
RequireTfa = "disable",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectAuthenticationScheme;
import com.pulumi.fortimanager.ObjectAuthenticationSchemeArgs;
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 ObjectAuthenticationScheme("trname", ObjectAuthenticationSchemeArgs.builder()
.fssoGuest("enable")
.methods("basic")
.requireTfa("disable")
.build());
}
}
resources:
trname:
type: fortimanager:ObjectAuthenticationScheme
properties:
fssoGuest: enable
methods:
- basic
requireTfa: disable
Create ObjectAuthenticationScheme Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectAuthenticationScheme(name: string, args?: ObjectAuthenticationSchemeArgs, opts?: CustomResourceOptions);
@overload
def ObjectAuthenticationScheme(resource_name: str,
args: Optional[ObjectAuthenticationSchemeArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectAuthenticationScheme(resource_name: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
domain_controller: Optional[str] = None,
ems_device_owner: Optional[str] = None,
fsso_agent_for_ntlm: Optional[str] = None,
fsso_guest: Optional[str] = None,
kerberos_keytab: Optional[str] = None,
methods: Optional[Sequence[str]] = None,
name: Optional[str] = None,
negotiate_ntlm: Optional[str] = None,
object_authentication_scheme_id: Optional[str] = None,
require_tfa: Optional[str] = None,
saml_server: Optional[str] = None,
saml_timeout: Optional[float] = None,
scopetype: Optional[str] = None,
ssh_ca: Optional[str] = None,
user_cert: Optional[str] = None,
user_databases: Optional[Sequence[str]] = None)
func NewObjectAuthenticationScheme(ctx *Context, name string, args *ObjectAuthenticationSchemeArgs, opts ...ResourceOption) (*ObjectAuthenticationScheme, error)
public ObjectAuthenticationScheme(string name, ObjectAuthenticationSchemeArgs? args = null, CustomResourceOptions? opts = null)
public ObjectAuthenticationScheme(String name, ObjectAuthenticationSchemeArgs args)
public ObjectAuthenticationScheme(String name, ObjectAuthenticationSchemeArgs args, CustomResourceOptions options)
type: fortimanager:ObjectAuthenticationScheme
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 ObjectAuthenticationSchemeArgs
- 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 ObjectAuthenticationSchemeArgs
- 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 ObjectAuthenticationSchemeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectAuthenticationSchemeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectAuthenticationSchemeArgs
- 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 objectAuthenticationSchemeResource = new Fortimanager.ObjectAuthenticationScheme("objectAuthenticationSchemeResource", new()
{
Adom = "string",
DomainController = "string",
EmsDeviceOwner = "string",
FssoAgentForNtlm = "string",
FssoGuest = "string",
KerberosKeytab = "string",
Methods = new[]
{
"string",
},
Name = "string",
NegotiateNtlm = "string",
ObjectAuthenticationSchemeId = "string",
RequireTfa = "string",
SamlServer = "string",
SamlTimeout = 0,
Scopetype = "string",
SshCa = "string",
UserCert = "string",
UserDatabases = new[]
{
"string",
},
});
example, err := fortimanager.NewObjectAuthenticationScheme(ctx, "objectAuthenticationSchemeResource", &fortimanager.ObjectAuthenticationSchemeArgs{
Adom: pulumi.String("string"),
DomainController: pulumi.String("string"),
EmsDeviceOwner: pulumi.String("string"),
FssoAgentForNtlm: pulumi.String("string"),
FssoGuest: pulumi.String("string"),
KerberosKeytab: pulumi.String("string"),
Methods: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
NegotiateNtlm: pulumi.String("string"),
ObjectAuthenticationSchemeId: pulumi.String("string"),
RequireTfa: pulumi.String("string"),
SamlServer: pulumi.String("string"),
SamlTimeout: pulumi.Float64(0),
Scopetype: pulumi.String("string"),
SshCa: pulumi.String("string"),
UserCert: pulumi.String("string"),
UserDatabases: pulumi.StringArray{
pulumi.String("string"),
},
})
var objectAuthenticationSchemeResource = new ObjectAuthenticationScheme("objectAuthenticationSchemeResource", ObjectAuthenticationSchemeArgs.builder()
.adom("string")
.domainController("string")
.emsDeviceOwner("string")
.fssoAgentForNtlm("string")
.fssoGuest("string")
.kerberosKeytab("string")
.methods("string")
.name("string")
.negotiateNtlm("string")
.objectAuthenticationSchemeId("string")
.requireTfa("string")
.samlServer("string")
.samlTimeout(0)
.scopetype("string")
.sshCa("string")
.userCert("string")
.userDatabases("string")
.build());
object_authentication_scheme_resource = fortimanager.ObjectAuthenticationScheme("objectAuthenticationSchemeResource",
adom="string",
domain_controller="string",
ems_device_owner="string",
fsso_agent_for_ntlm="string",
fsso_guest="string",
kerberos_keytab="string",
methods=["string"],
name="string",
negotiate_ntlm="string",
object_authentication_scheme_id="string",
require_tfa="string",
saml_server="string",
saml_timeout=0,
scopetype="string",
ssh_ca="string",
user_cert="string",
user_databases=["string"])
const objectAuthenticationSchemeResource = new fortimanager.ObjectAuthenticationScheme("objectAuthenticationSchemeResource", {
adom: "string",
domainController: "string",
emsDeviceOwner: "string",
fssoAgentForNtlm: "string",
fssoGuest: "string",
kerberosKeytab: "string",
methods: ["string"],
name: "string",
negotiateNtlm: "string",
objectAuthenticationSchemeId: "string",
requireTfa: "string",
samlServer: "string",
samlTimeout: 0,
scopetype: "string",
sshCa: "string",
userCert: "string",
userDatabases: ["string"],
});
type: fortimanager:ObjectAuthenticationScheme
properties:
adom: string
domainController: string
emsDeviceOwner: string
fssoAgentForNtlm: string
fssoGuest: string
kerberosKeytab: string
methods:
- string
name: string
negotiateNtlm: string
objectAuthenticationSchemeId: string
requireTfa: string
samlServer: string
samlTimeout: 0
scopetype: string
sshCa: string
userCert: string
userDatabases:
- string
ObjectAuthenticationScheme 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 ObjectAuthenticationScheme resource accepts the following input properties:
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Domain
Controller string - Domain controller setting.
- Ems
Device stringOwner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - Fsso
Agent stringFor Ntlm - FSSO agent to use for NTLM authentication.
- Fsso
Guest string - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - Kerberos
Keytab string - Kerberos keytab setting.
- Methods List<string>
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - Name string
- Authentication scheme name.
- Negotiate
Ntlm string - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - Object
Authentication stringScheme Id - an identifier for the resource with format {{name}}.
- Require
Tfa string - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - Saml
Server string - SAML configuration.
- Saml
Timeout double - SAML authentication timeout in seconds.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Ca string - SSH CA name.
- User
Cert string - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - User
Databases List<string> - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Domain
Controller string - Domain controller setting.
- Ems
Device stringOwner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - Fsso
Agent stringFor Ntlm - FSSO agent to use for NTLM authentication.
- Fsso
Guest string - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - Kerberos
Keytab string - Kerberos keytab setting.
- Methods []string
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - Name string
- Authentication scheme name.
- Negotiate
Ntlm string - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - Object
Authentication stringScheme Id - an identifier for the resource with format {{name}}.
- Require
Tfa string - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - Saml
Server string - SAML configuration.
- Saml
Timeout float64 - SAML authentication timeout in seconds.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Ca string - SSH CA name.
- User
Cert string - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - User
Databases []string - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller String - Domain controller setting.
- ems
Device StringOwner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - fsso
Agent StringFor Ntlm - FSSO agent to use for NTLM authentication.
- fsso
Guest String - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - kerberos
Keytab String - Kerberos keytab setting.
- methods List<String>
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - name String
- Authentication scheme name.
- negotiate
Ntlm String - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - object
Authentication StringScheme Id - an identifier for the resource with format {{name}}.
- require
Tfa String - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - saml
Server String - SAML configuration.
- saml
Timeout Double - SAML authentication timeout in seconds.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Ca String - SSH CA name.
- user
Cert String - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - user
Databases List<String> - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller string - Domain controller setting.
- ems
Device stringOwner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - fsso
Agent stringFor Ntlm - FSSO agent to use for NTLM authentication.
- fsso
Guest string - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - kerberos
Keytab string - Kerberos keytab setting.
- methods string[]
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - name string
- Authentication scheme name.
- negotiate
Ntlm string - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - object
Authentication stringScheme Id - an identifier for the resource with format {{name}}.
- require
Tfa string - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - saml
Server string - SAML configuration.
- saml
Timeout number - SAML authentication timeout in seconds.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Ca string - SSH CA name.
- user
Cert string - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - user
Databases string[] - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain_
controller str - Domain controller setting.
- ems_
device_ strowner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - fsso_
agent_ strfor_ ntlm - FSSO agent to use for NTLM authentication.
- fsso_
guest str - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - kerberos_
keytab str - Kerberos keytab setting.
- methods Sequence[str]
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - name str
- Authentication scheme name.
- negotiate_
ntlm str - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - object_
authentication_ strscheme_ id - an identifier for the resource with format {{name}}.
- require_
tfa str - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - saml_
server str - SAML configuration.
- saml_
timeout float - SAML authentication timeout in seconds.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh_
ca str - SSH CA name.
- user_
cert str - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - user_
databases Sequence[str] - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller String - Domain controller setting.
- ems
Device StringOwner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - fsso
Agent StringFor Ntlm - FSSO agent to use for NTLM authentication.
- fsso
Guest String - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - kerberos
Keytab String - Kerberos keytab setting.
- methods List<String>
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - name String
- Authentication scheme name.
- negotiate
Ntlm String - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - object
Authentication StringScheme Id - an identifier for the resource with format {{name}}.
- require
Tfa String - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - saml
Server String - SAML configuration.
- saml
Timeout Number - SAML authentication timeout in seconds.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Ca String - SSH CA name.
- user
Cert String - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - user
Databases List<String> - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectAuthenticationScheme 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 ObjectAuthenticationScheme Resource
Get an existing ObjectAuthenticationScheme 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?: ObjectAuthenticationSchemeState, opts?: CustomResourceOptions): ObjectAuthenticationScheme
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
domain_controller: Optional[str] = None,
ems_device_owner: Optional[str] = None,
fsso_agent_for_ntlm: Optional[str] = None,
fsso_guest: Optional[str] = None,
kerberos_keytab: Optional[str] = None,
methods: Optional[Sequence[str]] = None,
name: Optional[str] = None,
negotiate_ntlm: Optional[str] = None,
object_authentication_scheme_id: Optional[str] = None,
require_tfa: Optional[str] = None,
saml_server: Optional[str] = None,
saml_timeout: Optional[float] = None,
scopetype: Optional[str] = None,
ssh_ca: Optional[str] = None,
user_cert: Optional[str] = None,
user_databases: Optional[Sequence[str]] = None) -> ObjectAuthenticationScheme
func GetObjectAuthenticationScheme(ctx *Context, name string, id IDInput, state *ObjectAuthenticationSchemeState, opts ...ResourceOption) (*ObjectAuthenticationScheme, error)
public static ObjectAuthenticationScheme Get(string name, Input<string> id, ObjectAuthenticationSchemeState? state, CustomResourceOptions? opts = null)
public static ObjectAuthenticationScheme get(String name, Output<String> id, ObjectAuthenticationSchemeState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectAuthenticationScheme 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Domain
Controller string - Domain controller setting.
- Ems
Device stringOwner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - Fsso
Agent stringFor Ntlm - FSSO agent to use for NTLM authentication.
- Fsso
Guest string - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - Kerberos
Keytab string - Kerberos keytab setting.
- Methods List<string>
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - Name string
- Authentication scheme name.
- Negotiate
Ntlm string - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - Object
Authentication stringScheme Id - an identifier for the resource with format {{name}}.
- Require
Tfa string - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - Saml
Server string - SAML configuration.
- Saml
Timeout double - SAML authentication timeout in seconds.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Ca string - SSH CA name.
- User
Cert string - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - User
Databases List<string> - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Domain
Controller string - Domain controller setting.
- Ems
Device stringOwner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - Fsso
Agent stringFor Ntlm - FSSO agent to use for NTLM authentication.
- Fsso
Guest string - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - Kerberos
Keytab string - Kerberos keytab setting.
- Methods []string
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - Name string
- Authentication scheme name.
- Negotiate
Ntlm string - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - Object
Authentication stringScheme Id - an identifier for the resource with format {{name}}.
- Require
Tfa string - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - Saml
Server string - SAML configuration.
- Saml
Timeout float64 - SAML authentication timeout in seconds.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Ssh
Ca string - SSH CA name.
- User
Cert string - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - User
Databases []string - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller String - Domain controller setting.
- ems
Device StringOwner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - fsso
Agent StringFor Ntlm - FSSO agent to use for NTLM authentication.
- fsso
Guest String - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - kerberos
Keytab String - Kerberos keytab setting.
- methods List<String>
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - name String
- Authentication scheme name.
- negotiate
Ntlm String - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - object
Authentication StringScheme Id - an identifier for the resource with format {{name}}.
- require
Tfa String - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - saml
Server String - SAML configuration.
- saml
Timeout Double - SAML authentication timeout in seconds.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Ca String - SSH CA name.
- user
Cert String - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - user
Databases List<String> - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller string - Domain controller setting.
- ems
Device stringOwner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - fsso
Agent stringFor Ntlm - FSSO agent to use for NTLM authentication.
- fsso
Guest string - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - kerberos
Keytab string - Kerberos keytab setting.
- methods string[]
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - name string
- Authentication scheme name.
- negotiate
Ntlm string - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - object
Authentication stringScheme Id - an identifier for the resource with format {{name}}.
- require
Tfa string - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - saml
Server string - SAML configuration.
- saml
Timeout number - SAML authentication timeout in seconds.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Ca string - SSH CA name.
- user
Cert string - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - user
Databases string[] - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain_
controller str - Domain controller setting.
- ems_
device_ strowner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - fsso_
agent_ strfor_ ntlm - FSSO agent to use for NTLM authentication.
- fsso_
guest str - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - kerberos_
keytab str - Kerberos keytab setting.
- methods Sequence[str]
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - name str
- Authentication scheme name.
- negotiate_
ntlm str - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - object_
authentication_ strscheme_ id - an identifier for the resource with format {{name}}.
- require_
tfa str - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - saml_
server str - SAML configuration.
- saml_
timeout float - SAML authentication timeout in seconds.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh_
ca str - SSH CA name.
- user_
cert str - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - user_
databases Sequence[str] - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - domain
Controller String - Domain controller setting.
- ems
Device StringOwner - Enable/disable SSH public-key authentication with device owner (default = disable). Valid values:
disable
,enable
. - fsso
Agent StringFor Ntlm - FSSO agent to use for NTLM authentication.
- fsso
Guest String - Enable/disable user fsso-guest authentication (default = disable). Valid values:
disable
,enable
. - kerberos
Keytab String - Kerberos keytab setting.
- methods List<String>
- Authentication methods (default = basic). Valid values:
ntlm
,basic
,digest
,form
,negotiate
,fsso
,rsso
,ssh-publickey
. - name String
- Authentication scheme name.
- negotiate
Ntlm String - Enable/disable negotiate authentication for NTLM (default = disable). Valid values:
disable
,enable
. - object
Authentication StringScheme Id - an identifier for the resource with format {{name}}.
- require
Tfa String - Enable/disable two-factor authentication (default = disable). Valid values:
disable
,enable
. - saml
Server String - SAML configuration.
- saml
Timeout Number - SAML authentication timeout in seconds.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - ssh
Ca String - SSH CA name.
- user
Cert String - Enable/disable authentication with user certificate (default = disable). Valid values:
disable
,enable
. - user
Databases List<String> - Authentication server to contain user information; "local" (default) or "123" (for LDAP).
Import
ObjectAuthentication Scheme can be imported using any of these accepted formats:
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectAuthenticationScheme:ObjectAuthenticationScheme 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.