panos.SslTlsServiceProfile
Explore with Pulumi AI
Create SslTlsServiceProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SslTlsServiceProfile(name: string, args: SslTlsServiceProfileArgs, opts?: CustomResourceOptions);
@overload
def SslTlsServiceProfile(resource_name: str,
args: SslTlsServiceProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SslTlsServiceProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
certificate: Optional[str] = None,
location: Optional[SslTlsServiceProfileLocationArgs] = None,
name: Optional[str] = None,
protocol_settings: Optional[SslTlsServiceProfileProtocolSettingsArgs] = None)
func NewSslTlsServiceProfile(ctx *Context, name string, args SslTlsServiceProfileArgs, opts ...ResourceOption) (*SslTlsServiceProfile, error)
public SslTlsServiceProfile(string name, SslTlsServiceProfileArgs args, CustomResourceOptions? opts = null)
public SslTlsServiceProfile(String name, SslTlsServiceProfileArgs args)
public SslTlsServiceProfile(String name, SslTlsServiceProfileArgs args, CustomResourceOptions options)
type: panos:SslTlsServiceProfile
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 SslTlsServiceProfileArgs
- 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 SslTlsServiceProfileArgs
- 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 SslTlsServiceProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SslTlsServiceProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SslTlsServiceProfileArgs
- 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 sslTlsServiceProfileResource = new Panos.SslTlsServiceProfile("sslTlsServiceProfileResource", new()
{
Certificate = "string",
Location = new Panos.Inputs.SslTlsServiceProfileLocationArgs
{
Panorama = null,
Shared = null,
Template = new Panos.Inputs.SslTlsServiceProfileLocationTemplateArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStack = new Panos.Inputs.SslTlsServiceProfileLocationTemplateStackArgs
{
Name = "string",
PanoramaDevice = "string",
},
TemplateStackVsys = new Panos.Inputs.SslTlsServiceProfileLocationTemplateStackVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
TemplateStack = "string",
Vsys = "string",
},
TemplateVsys = new Panos.Inputs.SslTlsServiceProfileLocationTemplateVsysArgs
{
NgfwDevice = "string",
PanoramaDevice = "string",
Template = "string",
Vsys = "string",
},
},
Name = "string",
ProtocolSettings = new Panos.Inputs.SslTlsServiceProfileProtocolSettingsArgs
{
AllowAlgorithm3des = false,
AllowAlgorithmAes128Cbc = false,
AllowAlgorithmAes128Gcm = false,
AllowAlgorithmAes256Cbc = false,
AllowAlgorithmAes256Gcm = false,
AllowAlgorithmDhe = false,
AllowAlgorithmEcdhe = false,
AllowAlgorithmRc4 = false,
AllowAlgorithmRsa = false,
AllowAuthenticationSha1 = false,
AllowAuthenticationSha256 = false,
AllowAuthenticationSha384 = false,
MaxVersion = "string",
MinVersion = "string",
},
});
example, err := panos.NewSslTlsServiceProfile(ctx, "sslTlsServiceProfileResource", &panos.SslTlsServiceProfileArgs{
Certificate: pulumi.String("string"),
Location: &panos.SslTlsServiceProfileLocationArgs{
Panorama: &panos.SslTlsServiceProfileLocationPanoramaArgs{},
Shared: &panos.SslTlsServiceProfileLocationSharedArgs{},
Template: &panos.SslTlsServiceProfileLocationTemplateArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStack: &panos.SslTlsServiceProfileLocationTemplateStackArgs{
Name: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
},
TemplateStackVsys: &panos.SslTlsServiceProfileLocationTemplateStackVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
TemplateStack: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
TemplateVsys: &panos.SslTlsServiceProfileLocationTemplateVsysArgs{
NgfwDevice: pulumi.String("string"),
PanoramaDevice: pulumi.String("string"),
Template: pulumi.String("string"),
Vsys: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
ProtocolSettings: &panos.SslTlsServiceProfileProtocolSettingsArgs{
AllowAlgorithm3des: pulumi.Bool(false),
AllowAlgorithmAes128Cbc: pulumi.Bool(false),
AllowAlgorithmAes128Gcm: pulumi.Bool(false),
AllowAlgorithmAes256Cbc: pulumi.Bool(false),
AllowAlgorithmAes256Gcm: pulumi.Bool(false),
AllowAlgorithmDhe: pulumi.Bool(false),
AllowAlgorithmEcdhe: pulumi.Bool(false),
AllowAlgorithmRc4: pulumi.Bool(false),
AllowAlgorithmRsa: pulumi.Bool(false),
AllowAuthenticationSha1: pulumi.Bool(false),
AllowAuthenticationSha256: pulumi.Bool(false),
AllowAuthenticationSha384: pulumi.Bool(false),
MaxVersion: pulumi.String("string"),
MinVersion: pulumi.String("string"),
},
})
var sslTlsServiceProfileResource = new SslTlsServiceProfile("sslTlsServiceProfileResource", SslTlsServiceProfileArgs.builder()
.certificate("string")
.location(SslTlsServiceProfileLocationArgs.builder()
.panorama()
.shared()
.template(SslTlsServiceProfileLocationTemplateArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStack(SslTlsServiceProfileLocationTemplateStackArgs.builder()
.name("string")
.panoramaDevice("string")
.build())
.templateStackVsys(SslTlsServiceProfileLocationTemplateStackVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.templateStack("string")
.vsys("string")
.build())
.templateVsys(SslTlsServiceProfileLocationTemplateVsysArgs.builder()
.ngfwDevice("string")
.panoramaDevice("string")
.template("string")
.vsys("string")
.build())
.build())
.name("string")
.protocolSettings(SslTlsServiceProfileProtocolSettingsArgs.builder()
.allowAlgorithm3des(false)
.allowAlgorithmAes128Cbc(false)
.allowAlgorithmAes128Gcm(false)
.allowAlgorithmAes256Cbc(false)
.allowAlgorithmAes256Gcm(false)
.allowAlgorithmDhe(false)
.allowAlgorithmEcdhe(false)
.allowAlgorithmRc4(false)
.allowAlgorithmRsa(false)
.allowAuthenticationSha1(false)
.allowAuthenticationSha256(false)
.allowAuthenticationSha384(false)
.maxVersion("string")
.minVersion("string")
.build())
.build());
ssl_tls_service_profile_resource = panos.SslTlsServiceProfile("sslTlsServiceProfileResource",
certificate="string",
location={
"panorama": {},
"shared": {},
"template": {
"name": "string",
"panorama_device": "string",
},
"template_stack": {
"name": "string",
"panorama_device": "string",
},
"template_stack_vsys": {
"ngfw_device": "string",
"panorama_device": "string",
"template_stack": "string",
"vsys": "string",
},
"template_vsys": {
"ngfw_device": "string",
"panorama_device": "string",
"template": "string",
"vsys": "string",
},
},
name="string",
protocol_settings={
"allow_algorithm3des": False,
"allow_algorithm_aes128_cbc": False,
"allow_algorithm_aes128_gcm": False,
"allow_algorithm_aes256_cbc": False,
"allow_algorithm_aes256_gcm": False,
"allow_algorithm_dhe": False,
"allow_algorithm_ecdhe": False,
"allow_algorithm_rc4": False,
"allow_algorithm_rsa": False,
"allow_authentication_sha1": False,
"allow_authentication_sha256": False,
"allow_authentication_sha384": False,
"max_version": "string",
"min_version": "string",
})
const sslTlsServiceProfileResource = new panos.SslTlsServiceProfile("sslTlsServiceProfileResource", {
certificate: "string",
location: {
panorama: {},
shared: {},
template: {
name: "string",
panoramaDevice: "string",
},
templateStack: {
name: "string",
panoramaDevice: "string",
},
templateStackVsys: {
ngfwDevice: "string",
panoramaDevice: "string",
templateStack: "string",
vsys: "string",
},
templateVsys: {
ngfwDevice: "string",
panoramaDevice: "string",
template: "string",
vsys: "string",
},
},
name: "string",
protocolSettings: {
allowAlgorithm3des: false,
allowAlgorithmAes128Cbc: false,
allowAlgorithmAes128Gcm: false,
allowAlgorithmAes256Cbc: false,
allowAlgorithmAes256Gcm: false,
allowAlgorithmDhe: false,
allowAlgorithmEcdhe: false,
allowAlgorithmRc4: false,
allowAlgorithmRsa: false,
allowAuthenticationSha1: false,
allowAuthenticationSha256: false,
allowAuthenticationSha384: false,
maxVersion: "string",
minVersion: "string",
},
});
type: panos:SslTlsServiceProfile
properties:
certificate: string
location:
panorama: {}
shared: {}
template:
name: string
panoramaDevice: string
templateStack:
name: string
panoramaDevice: string
templateStackVsys:
ngfwDevice: string
panoramaDevice: string
templateStack: string
vsys: string
templateVsys:
ngfwDevice: string
panoramaDevice: string
template: string
vsys: string
name: string
protocolSettings:
allowAlgorithm3des: false
allowAlgorithmAes128Cbc: false
allowAlgorithmAes128Gcm: false
allowAlgorithmAes256Cbc: false
allowAlgorithmAes256Gcm: false
allowAlgorithmDhe: false
allowAlgorithmEcdhe: false
allowAlgorithmRc4: false
allowAlgorithmRsa: false
allowAuthenticationSha1: false
allowAuthenticationSha256: false
allowAuthenticationSha384: false
maxVersion: string
minVersion: string
SslTlsServiceProfile 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 SslTlsServiceProfile resource accepts the following input properties:
- Certificate string
- SSL certificate file name
- Location
Ssl
Tls Service Profile Location - The location of this object.
- Name string
- Protocol
Settings SslTls Service Profile Protocol Settings
- Certificate string
- SSL certificate file name
- Location
Ssl
Tls Service Profile Location Args - The location of this object.
- Name string
- Protocol
Settings SslTls Service Profile Protocol Settings Args
- certificate String
- SSL certificate file name
- location
Ssl
Tls Service Profile Location - The location of this object.
- name String
- protocol
Settings SslTls Service Profile Protocol Settings
- certificate string
- SSL certificate file name
- location
Ssl
Tls Service Profile Location - The location of this object.
- name string
- protocol
Settings SslTls Service Profile Protocol Settings
- certificate str
- SSL certificate file name
- location
Ssl
Tls Service Profile Location Args - The location of this object.
- name str
- protocol_
settings SslTls Service Profile Protocol Settings Args
- certificate String
- SSL certificate file name
- location Property Map
- The location of this object.
- name String
- protocol
Settings Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the SslTlsServiceProfile 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 SslTlsServiceProfile Resource
Get an existing SslTlsServiceProfile 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?: SslTlsServiceProfileState, opts?: CustomResourceOptions): SslTlsServiceProfile
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
certificate: Optional[str] = None,
location: Optional[SslTlsServiceProfileLocationArgs] = None,
name: Optional[str] = None,
protocol_settings: Optional[SslTlsServiceProfileProtocolSettingsArgs] = None) -> SslTlsServiceProfile
func GetSslTlsServiceProfile(ctx *Context, name string, id IDInput, state *SslTlsServiceProfileState, opts ...ResourceOption) (*SslTlsServiceProfile, error)
public static SslTlsServiceProfile Get(string name, Input<string> id, SslTlsServiceProfileState? state, CustomResourceOptions? opts = null)
public static SslTlsServiceProfile get(String name, Output<String> id, SslTlsServiceProfileState state, CustomResourceOptions options)
resources: _: type: panos:SslTlsServiceProfile 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.
- Certificate string
- SSL certificate file name
- Location
Ssl
Tls Service Profile Location - The location of this object.
- Name string
- Protocol
Settings SslTls Service Profile Protocol Settings
- Certificate string
- SSL certificate file name
- Location
Ssl
Tls Service Profile Location Args - The location of this object.
- Name string
- Protocol
Settings SslTls Service Profile Protocol Settings Args
- certificate String
- SSL certificate file name
- location
Ssl
Tls Service Profile Location - The location of this object.
- name String
- protocol
Settings SslTls Service Profile Protocol Settings
- certificate string
- SSL certificate file name
- location
Ssl
Tls Service Profile Location - The location of this object.
- name string
- protocol
Settings SslTls Service Profile Protocol Settings
- certificate str
- SSL certificate file name
- location
Ssl
Tls Service Profile Location Args - The location of this object.
- name str
- protocol_
settings SslTls Service Profile Protocol Settings Args
- certificate String
- SSL certificate file name
- location Property Map
- The location of this object.
- name String
- protocol
Settings Property Map
Supporting Types
SslTlsServiceProfileLocation, SslTlsServiceProfileLocationArgs
- Panorama
Ssl
Tls Service Profile Location Panorama - Located in a panorama.
- Ssl
Tls Service Profile Location Shared - Panorama shared object
- Template
Ssl
Tls Service Profile Location Template - Located in a specific template
- Template
Stack SslTls Service Profile Location Template Stack - Located in a specific template
- Template
Stack SslVsys Tls Service Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys SslTls Service Profile Location Template Vsys - Located in a specific template, device and vsys.
- Panorama
Ssl
Tls Service Profile Location Panorama - Located in a panorama.
- Ssl
Tls Service Profile Location Shared - Panorama shared object
- Template
Ssl
Tls Service Profile Location Template - Located in a specific template
- Template
Stack SslTls Service Profile Location Template Stack - Located in a specific template
- Template
Stack SslVsys Tls Service Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- Template
Vsys SslTls Service Profile Location Template Vsys - Located in a specific template, device and vsys.
- panorama
Ssl
Tls Service Profile Location Panorama - Located in a panorama.
- Ssl
Tls Service Profile Location Shared - Panorama shared object
- template
Ssl
Tls Service Profile Location Template - Located in a specific template
- template
Stack SslTls Service Profile Location Template Stack - Located in a specific template
- template
Stack SslVsys Tls Service Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys SslTls Service Profile Location Template Vsys - Located in a specific template, device and vsys.
- panorama
Ssl
Tls Service Profile Location Panorama - Located in a panorama.
- Ssl
Tls Service Profile Location Shared - Panorama shared object
- template
Ssl
Tls Service Profile Location Template - Located in a specific template
- template
Stack SslTls Service Profile Location Template Stack - Located in a specific template
- template
Stack SslVsys Tls Service Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template
Vsys SslTls Service Profile Location Template Vsys - Located in a specific template, device and vsys.
- panorama
Ssl
Tls Service Profile Location Panorama - Located in a panorama.
- Ssl
Tls Service Profile Location Shared - Panorama shared object
- template
Ssl
Tls Service Profile Location Template - Located in a specific template
- template_
stack SslTls Service Profile Location Template Stack - Located in a specific template
- template_
stack_ Sslvsys Tls Service Profile Location Template Stack Vsys - Located in a specific template, device and vsys.
- template_
vsys SslTls Service Profile Location Template Vsys - Located in a specific template, device and vsys.
- panorama Property Map
- Located in a panorama.
- Property Map
- Panorama shared object
- template Property Map
- Located in a specific template
- template
Stack Property Map - Located in a specific template
- template
Stack Property MapVsys - Located in a specific template, device and vsys.
- template
Vsys Property Map - Located in a specific template, device and vsys.
SslTlsServiceProfileLocationTemplate, SslTlsServiceProfileLocationTemplateArgs
- Name string
- Specific Panorama template
- Panorama
Device string - Specific Panorama device
- Name string
- Specific Panorama template
- Panorama
Device string - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
- name string
- Specific Panorama template
- panorama
Device string - Specific Panorama device
- name str
- Specific Panorama template
- panorama_
device str - Specific Panorama device
- name String
- Specific Panorama template
- panorama
Device String - Specific Panorama device
SslTlsServiceProfileLocationTemplateStack, SslTlsServiceProfileLocationTemplateStackArgs
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- Name string
- The template stack
- Panorama
Device string - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
- name string
- The template stack
- panorama
Device string - Specific Panorama device
- name str
- The template stack
- panorama_
device str - Specific Panorama device
- name String
- The template stack
- panorama
Device String - Specific Panorama device
SslTlsServiceProfileLocationTemplateStackVsys, SslTlsServiceProfileLocationTemplateStackVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template
Stack string - The template stack
- Vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- template
Stack string - The template stack
- vsys string
- The vsys.
- ngfw_
device str - The NGFW device
- panorama_
device str - Specific Panorama device
- template_
stack str - The template stack
- vsys str
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template
Stack String - The template stack
- vsys String
- The vsys.
SslTlsServiceProfileLocationTemplateVsys, SslTlsServiceProfileLocationTemplateVsysArgs
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- Ngfw
Device string - The NGFW device
- Panorama
Device string - Specific Panorama device
- Template string
- Specific Panorama template
- Vsys string
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
- ngfw
Device string - The NGFW device
- panorama
Device string - Specific Panorama device
- template string
- Specific Panorama template
- vsys string
- The vsys.
- ngfw_
device str - The NGFW device
- panorama_
device str - Specific Panorama device
- template str
- Specific Panorama template
- vsys str
- The vsys.
- ngfw
Device String - The NGFW device
- panorama
Device String - Specific Panorama device
- template String
- Specific Panorama template
- vsys String
- The vsys.
SslTlsServiceProfileProtocolSettings, SslTlsServiceProfileProtocolSettingsArgs
- Allow
Algorithm3des bool - Allow algorithm 3DES
- Allow
Algorithm boolAes128Cbc - Allow algorithm AES-128-CBC
- Allow
Algorithm boolAes128Gcm - Allow algorithm AES-128-GCM
- Allow
Algorithm boolAes256Cbc - Allow algorithm AES-256-CBC
- Allow
Algorithm boolAes256Gcm - Allow algorithm AES-256-GCM
- Allow
Algorithm boolDhe - Allow algorithm DHE
- Allow
Algorithm boolEcdhe - Allow algorithm ECDHE
- Allow
Algorithm boolRc4 - Allow algorithm RC4
- Allow
Algorithm boolRsa - Allow algorithm RSA
- Allow
Authentication boolSha1 - Allow authentication SHA1
- Allow
Authentication boolSha256 - Allow authentication SHA256
- Allow
Authentication boolSha384 - Allow authentication SHA384
- Max
Version string - Maximum TLS protocol version. Valid values are 'tls1-0', 'tls1-1', 'tls1-2', and max (default).
- Min
Version string
- Allow
Algorithm3des bool - Allow algorithm 3DES
- Allow
Algorithm boolAes128Cbc - Allow algorithm AES-128-CBC
- Allow
Algorithm boolAes128Gcm - Allow algorithm AES-128-GCM
- Allow
Algorithm boolAes256Cbc - Allow algorithm AES-256-CBC
- Allow
Algorithm boolAes256Gcm - Allow algorithm AES-256-GCM
- Allow
Algorithm boolDhe - Allow algorithm DHE
- Allow
Algorithm boolEcdhe - Allow algorithm ECDHE
- Allow
Algorithm boolRc4 - Allow algorithm RC4
- Allow
Algorithm boolRsa - Allow algorithm RSA
- Allow
Authentication boolSha1 - Allow authentication SHA1
- Allow
Authentication boolSha256 - Allow authentication SHA256
- Allow
Authentication boolSha384 - Allow authentication SHA384
- Max
Version string - Maximum TLS protocol version. Valid values are 'tls1-0', 'tls1-1', 'tls1-2', and max (default).
- Min
Version string
- allow
Algorithm3des Boolean - Allow algorithm 3DES
- allow
Algorithm BooleanAes128Cbc - Allow algorithm AES-128-CBC
- allow
Algorithm BooleanAes128Gcm - Allow algorithm AES-128-GCM
- allow
Algorithm BooleanAes256Cbc - Allow algorithm AES-256-CBC
- allow
Algorithm BooleanAes256Gcm - Allow algorithm AES-256-GCM
- allow
Algorithm BooleanDhe - Allow algorithm DHE
- allow
Algorithm BooleanEcdhe - Allow algorithm ECDHE
- allow
Algorithm BooleanRc4 - Allow algorithm RC4
- allow
Algorithm BooleanRsa - Allow algorithm RSA
- allow
Authentication BooleanSha1 - Allow authentication SHA1
- allow
Authentication BooleanSha256 - Allow authentication SHA256
- allow
Authentication BooleanSha384 - Allow authentication SHA384
- max
Version String - Maximum TLS protocol version. Valid values are 'tls1-0', 'tls1-1', 'tls1-2', and max (default).
- min
Version String
- allow
Algorithm3des boolean - Allow algorithm 3DES
- allow
Algorithm booleanAes128Cbc - Allow algorithm AES-128-CBC
- allow
Algorithm booleanAes128Gcm - Allow algorithm AES-128-GCM
- allow
Algorithm booleanAes256Cbc - Allow algorithm AES-256-CBC
- allow
Algorithm booleanAes256Gcm - Allow algorithm AES-256-GCM
- allow
Algorithm booleanDhe - Allow algorithm DHE
- allow
Algorithm booleanEcdhe - Allow algorithm ECDHE
- allow
Algorithm booleanRc4 - Allow algorithm RC4
- allow
Algorithm booleanRsa - Allow algorithm RSA
- allow
Authentication booleanSha1 - Allow authentication SHA1
- allow
Authentication booleanSha256 - Allow authentication SHA256
- allow
Authentication booleanSha384 - Allow authentication SHA384
- max
Version string - Maximum TLS protocol version. Valid values are 'tls1-0', 'tls1-1', 'tls1-2', and max (default).
- min
Version string
- allow_
algorithm3des bool - Allow algorithm 3DES
- allow_
algorithm_ boolaes128_ cbc - Allow algorithm AES-128-CBC
- allow_
algorithm_ boolaes128_ gcm - Allow algorithm AES-128-GCM
- allow_
algorithm_ boolaes256_ cbc - Allow algorithm AES-256-CBC
- allow_
algorithm_ boolaes256_ gcm - Allow algorithm AES-256-GCM
- allow_
algorithm_ booldhe - Allow algorithm DHE
- allow_
algorithm_ boolecdhe - Allow algorithm ECDHE
- allow_
algorithm_ boolrc4 - Allow algorithm RC4
- allow_
algorithm_ boolrsa - Allow algorithm RSA
- allow_
authentication_ boolsha1 - Allow authentication SHA1
- allow_
authentication_ boolsha256 - Allow authentication SHA256
- allow_
authentication_ boolsha384 - Allow authentication SHA384
- max_
version str - Maximum TLS protocol version. Valid values are 'tls1-0', 'tls1-1', 'tls1-2', and max (default).
- min_
version str
- allow
Algorithm3des Boolean - Allow algorithm 3DES
- allow
Algorithm BooleanAes128Cbc - Allow algorithm AES-128-CBC
- allow
Algorithm BooleanAes128Gcm - Allow algorithm AES-128-GCM
- allow
Algorithm BooleanAes256Cbc - Allow algorithm AES-256-CBC
- allow
Algorithm BooleanAes256Gcm - Allow algorithm AES-256-GCM
- allow
Algorithm BooleanDhe - Allow algorithm DHE
- allow
Algorithm BooleanEcdhe - Allow algorithm ECDHE
- allow
Algorithm BooleanRc4 - Allow algorithm RC4
- allow
Algorithm BooleanRsa - Allow algorithm RSA
- allow
Authentication BooleanSha1 - Allow authentication SHA1
- allow
Authentication BooleanSha256 - Allow authentication SHA256
- allow
Authentication BooleanSha384 - Allow authentication SHA384
- max
Version String - Maximum TLS protocol version. Valid values are 'tls1-0', 'tls1-1', 'tls1-2', and max (default).
- min
Version String
Package Details
- Repository
- panos paloaltonetworks/terraform-provider-panos
- License
- Notes
- This Pulumi package is based on the
panos
Terraform Provider.