sdwan.SecurityPolicy
Explore with Pulumi AI
This resource can manage a Security Policy .
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.SecurityPolicy;
import com.pulumi.sdwan.SecurityPolicyArgs;
import com.pulumi.sdwan.inputs.SecurityPolicyDefinitionArgs;
import com.pulumi.sdwan.inputs.SecurityPolicyLoggingArgs;
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 example = new SecurityPolicy("example", SecurityPolicyArgs.builder()
            .name("Example")
            .description("Example")
            .mode("security")
            .useCase("custom")
            .definitions(SecurityPolicyDefinitionArgs.builder()
                .id("7d299c34-981c-4fb3-9167-6be44ab1691f")
                .type("urlFiltering")
                .build())
            .failureMode("close")
            .loggings(SecurityPolicyLoggingArgs.builder()
                .external_syslog_server_ip("10.0.0.1")
                .external_syslog_server_vpn("123")
                .build())
            .build());
    }
}
resources:
  example:
    type: sdwan:SecurityPolicy
    properties:
      name: Example
      description: Example
      mode: security
      useCase: custom
      definitions:
        - id: 7d299c34-981c-4fb3-9167-6be44ab1691f
          type: urlFiltering
      failureMode: close
      loggings:
        - external_syslog_server_ip: 10.0.0.1
          external_syslog_server_vpn: '123'
Create SecurityPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SecurityPolicy(name: string, args: SecurityPolicyArgs, opts?: CustomResourceOptions);@overload
def SecurityPolicy(resource_name: str,
                   args: SecurityPolicyArgs,
                   opts: Optional[ResourceOptions] = None)
@overload
def SecurityPolicy(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   description: Optional[str] = None,
                   definitions: Optional[Sequence[SecurityPolicyDefinitionArgs]] = None,
                   high_speed_logging_server_port: Optional[str] = None,
                   direct_internet_applications: Optional[str] = None,
                   failure_mode: Optional[str] = None,
                   high_speed_logging_server_ip: Optional[str] = None,
                   audit_trail: Optional[str] = None,
                   high_speed_logging_vpn: Optional[str] = None,
                   loggings: Optional[Sequence[SecurityPolicyLoggingArgs]] = None,
                   match_statistics_per_filter: Optional[str] = None,
                   mode: Optional[str] = None,
                   name: Optional[str] = None,
                   tcp_syn_flood_limit: Optional[str] = None,
                   use_case: Optional[str] = None)func NewSecurityPolicy(ctx *Context, name string, args SecurityPolicyArgs, opts ...ResourceOption) (*SecurityPolicy, error)public SecurityPolicy(string name, SecurityPolicyArgs args, CustomResourceOptions? opts = null)
public SecurityPolicy(String name, SecurityPolicyArgs args)
public SecurityPolicy(String name, SecurityPolicyArgs args, CustomResourceOptions options)
type: sdwan:SecurityPolicy
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 SecurityPolicyArgs
- 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 SecurityPolicyArgs
- 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 SecurityPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecurityPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SecurityPolicyArgs
- 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 securityPolicyResource = new Sdwan.SecurityPolicy("securityPolicyResource", new()
{
    Description = "string",
    Definitions = new[]
    {
        new Sdwan.Inputs.SecurityPolicyDefinitionArgs
        {
            Id = "string",
            Type = "string",
            Version = 0,
        },
    },
    HighSpeedLoggingServerPort = "string",
    DirectInternetApplications = "string",
    FailureMode = "string",
    HighSpeedLoggingServerIp = "string",
    AuditTrail = "string",
    HighSpeedLoggingVpn = "string",
    Loggings = new[]
    {
        new Sdwan.Inputs.SecurityPolicyLoggingArgs
        {
            ExternalSyslogServerIp = "string",
            ExternalSyslogServerVpn = "string",
        },
    },
    MatchStatisticsPerFilter = "string",
    Mode = "string",
    Name = "string",
    TcpSynFloodLimit = "string",
    UseCase = "string",
});
example, err := sdwan.NewSecurityPolicy(ctx, "securityPolicyResource", &sdwan.SecurityPolicyArgs{
	Description: pulumi.String("string"),
	Definitions: sdwan.SecurityPolicyDefinitionArray{
		&sdwan.SecurityPolicyDefinitionArgs{
			Id:      pulumi.String("string"),
			Type:    pulumi.String("string"),
			Version: pulumi.Int(0),
		},
	},
	HighSpeedLoggingServerPort: pulumi.String("string"),
	DirectInternetApplications: pulumi.String("string"),
	FailureMode:                pulumi.String("string"),
	HighSpeedLoggingServerIp:   pulumi.String("string"),
	AuditTrail:                 pulumi.String("string"),
	HighSpeedLoggingVpn:        pulumi.String("string"),
	Loggings: sdwan.SecurityPolicyLoggingArray{
		&sdwan.SecurityPolicyLoggingArgs{
			ExternalSyslogServerIp:  pulumi.String("string"),
			ExternalSyslogServerVpn: pulumi.String("string"),
		},
	},
	MatchStatisticsPerFilter: pulumi.String("string"),
	Mode:                     pulumi.String("string"),
	Name:                     pulumi.String("string"),
	TcpSynFloodLimit:         pulumi.String("string"),
	UseCase:                  pulumi.String("string"),
})
var securityPolicyResource = new SecurityPolicy("securityPolicyResource", SecurityPolicyArgs.builder()
    .description("string")
    .definitions(SecurityPolicyDefinitionArgs.builder()
        .id("string")
        .type("string")
        .version(0)
        .build())
    .highSpeedLoggingServerPort("string")
    .directInternetApplications("string")
    .failureMode("string")
    .highSpeedLoggingServerIp("string")
    .auditTrail("string")
    .highSpeedLoggingVpn("string")
    .loggings(SecurityPolicyLoggingArgs.builder()
        .externalSyslogServerIp("string")
        .externalSyslogServerVpn("string")
        .build())
    .matchStatisticsPerFilter("string")
    .mode("string")
    .name("string")
    .tcpSynFloodLimit("string")
    .useCase("string")
    .build());
security_policy_resource = sdwan.SecurityPolicy("securityPolicyResource",
    description="string",
    definitions=[{
        "id": "string",
        "type": "string",
        "version": 0,
    }],
    high_speed_logging_server_port="string",
    direct_internet_applications="string",
    failure_mode="string",
    high_speed_logging_server_ip="string",
    audit_trail="string",
    high_speed_logging_vpn="string",
    loggings=[{
        "external_syslog_server_ip": "string",
        "external_syslog_server_vpn": "string",
    }],
    match_statistics_per_filter="string",
    mode="string",
    name="string",
    tcp_syn_flood_limit="string",
    use_case="string")
const securityPolicyResource = new sdwan.SecurityPolicy("securityPolicyResource", {
    description: "string",
    definitions: [{
        id: "string",
        type: "string",
        version: 0,
    }],
    highSpeedLoggingServerPort: "string",
    directInternetApplications: "string",
    failureMode: "string",
    highSpeedLoggingServerIp: "string",
    auditTrail: "string",
    highSpeedLoggingVpn: "string",
    loggings: [{
        externalSyslogServerIp: "string",
        externalSyslogServerVpn: "string",
    }],
    matchStatisticsPerFilter: "string",
    mode: "string",
    name: "string",
    tcpSynFloodLimit: "string",
    useCase: "string",
});
type: sdwan:SecurityPolicy
properties:
    auditTrail: string
    definitions:
        - id: string
          type: string
          version: 0
    description: string
    directInternetApplications: string
    failureMode: string
    highSpeedLoggingServerIp: string
    highSpeedLoggingServerPort: string
    highSpeedLoggingVpn: string
    loggings:
        - externalSyslogServerIp: string
          externalSyslogServerVpn: string
    matchStatisticsPerFilter: string
    mode: string
    name: string
    tcpSynFloodLimit: string
    useCase: string
SecurityPolicy 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 SecurityPolicy resource accepts the following input properties:
- Definitions
List<SecurityPolicy Definition> 
- List of policy definitions
- Description string
- The description of the security policy
- AuditTrail string
- Audit trail - Choices: on,off
- DirectInternet stringApplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- FailureMode string
- Failure mode - Choices: open,close
- HighSpeed stringLogging Server Ip 
- High Speed Logging Server IP
- HighSpeed stringLogging Server Port 
- High Speed Logging Port
- HighSpeed stringLogging Vpn 
- High Speed Logging VPN
- Loggings
List<SecurityPolicy Logging> 
- MatchStatistics stringPer Filter 
- Match Statistics per-filter - Choices: on,off
- Mode string
- The policy mode - Choices: security,unified- Default value:security
- Name string
- The name of the security policy
- TcpSyn stringFlood Limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- UseCase string
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
- Definitions
[]SecurityPolicy Definition Args 
- List of policy definitions
- Description string
- The description of the security policy
- AuditTrail string
- Audit trail - Choices: on,off
- DirectInternet stringApplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- FailureMode string
- Failure mode - Choices: open,close
- HighSpeed stringLogging Server Ip 
- High Speed Logging Server IP
- HighSpeed stringLogging Server Port 
- High Speed Logging Port
- HighSpeed stringLogging Vpn 
- High Speed Logging VPN
- Loggings
[]SecurityPolicy Logging Args 
- MatchStatistics stringPer Filter 
- Match Statistics per-filter - Choices: on,off
- Mode string
- The policy mode - Choices: security,unified- Default value:security
- Name string
- The name of the security policy
- TcpSyn stringFlood Limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- UseCase string
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
- definitions
List<SecurityPolicy Definition> 
- List of policy definitions
- description String
- The description of the security policy
- auditTrail String
- Audit trail - Choices: on,off
- directInternet StringApplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- failureMode String
- Failure mode - Choices: open,close
- highSpeed StringLogging Server Ip 
- High Speed Logging Server IP
- highSpeed StringLogging Server Port 
- High Speed Logging Port
- highSpeed StringLogging Vpn 
- High Speed Logging VPN
- loggings
List<SecurityPolicy Logging> 
- matchStatistics StringPer Filter 
- Match Statistics per-filter - Choices: on,off
- mode String
- The policy mode - Choices: security,unified- Default value:security
- name String
- The name of the security policy
- tcpSyn StringFlood Limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- useCase String
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
- definitions
SecurityPolicy Definition[] 
- List of policy definitions
- description string
- The description of the security policy
- auditTrail string
- Audit trail - Choices: on,off
- directInternet stringApplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- failureMode string
- Failure mode - Choices: open,close
- highSpeed stringLogging Server Ip 
- High Speed Logging Server IP
- highSpeed stringLogging Server Port 
- High Speed Logging Port
- highSpeed stringLogging Vpn 
- High Speed Logging VPN
- loggings
SecurityPolicy Logging[] 
- matchStatistics stringPer Filter 
- Match Statistics per-filter - Choices: on,off
- mode string
- The policy mode - Choices: security,unified- Default value:security
- name string
- The name of the security policy
- tcpSyn stringFlood Limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- useCase string
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
- definitions
Sequence[SecurityPolicy Definition Args] 
- List of policy definitions
- description str
- The description of the security policy
- audit_trail str
- Audit trail - Choices: on,off
- direct_internet_ strapplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- failure_mode str
- Failure mode - Choices: open,close
- high_speed_ strlogging_ server_ ip 
- High Speed Logging Server IP
- high_speed_ strlogging_ server_ port 
- High Speed Logging Port
- high_speed_ strlogging_ vpn 
- High Speed Logging VPN
- loggings
Sequence[SecurityPolicy Logging Args] 
- match_statistics_ strper_ filter 
- Match Statistics per-filter - Choices: on,off
- mode str
- The policy mode - Choices: security,unified- Default value:security
- name str
- The name of the security policy
- tcp_syn_ strflood_ limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- use_case str
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
- definitions List<Property Map>
- List of policy definitions
- description String
- The description of the security policy
- auditTrail String
- Audit trail - Choices: on,off
- directInternet StringApplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- failureMode String
- Failure mode - Choices: open,close
- highSpeed StringLogging Server Ip 
- High Speed Logging Server IP
- highSpeed StringLogging Server Port 
- High Speed Logging Port
- highSpeed StringLogging Vpn 
- High Speed Logging VPN
- loggings List<Property Map>
- matchStatistics StringPer Filter 
- Match Statistics per-filter - Choices: on,off
- mode String
- The policy mode - Choices: security,unified- Default value:security
- name String
- The name of the security policy
- tcpSyn StringFlood Limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- useCase String
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
Outputs
All input properties are implicitly available as output properties. Additionally, the SecurityPolicy resource produces the following output properties:
Look up Existing SecurityPolicy Resource
Get an existing SecurityPolicy 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?: SecurityPolicyState, opts?: CustomResourceOptions): SecurityPolicy@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        audit_trail: Optional[str] = None,
        definitions: Optional[Sequence[SecurityPolicyDefinitionArgs]] = None,
        description: Optional[str] = None,
        direct_internet_applications: Optional[str] = None,
        failure_mode: Optional[str] = None,
        high_speed_logging_server_ip: Optional[str] = None,
        high_speed_logging_server_port: Optional[str] = None,
        high_speed_logging_vpn: Optional[str] = None,
        loggings: Optional[Sequence[SecurityPolicyLoggingArgs]] = None,
        match_statistics_per_filter: Optional[str] = None,
        mode: Optional[str] = None,
        name: Optional[str] = None,
        tcp_syn_flood_limit: Optional[str] = None,
        use_case: Optional[str] = None,
        version: Optional[int] = None) -> SecurityPolicyfunc GetSecurityPolicy(ctx *Context, name string, id IDInput, state *SecurityPolicyState, opts ...ResourceOption) (*SecurityPolicy, error)public static SecurityPolicy Get(string name, Input<string> id, SecurityPolicyState? state, CustomResourceOptions? opts = null)public static SecurityPolicy get(String name, Output<String> id, SecurityPolicyState state, CustomResourceOptions options)resources:  _:    type: sdwan:SecurityPolicy    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.
- AuditTrail string
- Audit trail - Choices: on,off
- Definitions
List<SecurityPolicy Definition> 
- List of policy definitions
- Description string
- The description of the security policy
- DirectInternet stringApplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- FailureMode string
- Failure mode - Choices: open,close
- HighSpeed stringLogging Server Ip 
- High Speed Logging Server IP
- HighSpeed stringLogging Server Port 
- High Speed Logging Port
- HighSpeed stringLogging Vpn 
- High Speed Logging VPN
- Loggings
List<SecurityPolicy Logging> 
- MatchStatistics stringPer Filter 
- Match Statistics per-filter - Choices: on,off
- Mode string
- The policy mode - Choices: security,unified- Default value:security
- Name string
- The name of the security policy
- TcpSyn stringFlood Limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- UseCase string
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
- Version int
- The version of the object
- AuditTrail string
- Audit trail - Choices: on,off
- Definitions
[]SecurityPolicy Definition Args 
- List of policy definitions
- Description string
- The description of the security policy
- DirectInternet stringApplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- FailureMode string
- Failure mode - Choices: open,close
- HighSpeed stringLogging Server Ip 
- High Speed Logging Server IP
- HighSpeed stringLogging Server Port 
- High Speed Logging Port
- HighSpeed stringLogging Vpn 
- High Speed Logging VPN
- Loggings
[]SecurityPolicy Logging Args 
- MatchStatistics stringPer Filter 
- Match Statistics per-filter - Choices: on,off
- Mode string
- The policy mode - Choices: security,unified- Default value:security
- Name string
- The name of the security policy
- TcpSyn stringFlood Limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- UseCase string
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
- Version int
- The version of the object
- auditTrail String
- Audit trail - Choices: on,off
- definitions
List<SecurityPolicy Definition> 
- List of policy definitions
- description String
- The description of the security policy
- directInternet StringApplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- failureMode String
- Failure mode - Choices: open,close
- highSpeed StringLogging Server Ip 
- High Speed Logging Server IP
- highSpeed StringLogging Server Port 
- High Speed Logging Port
- highSpeed StringLogging Vpn 
- High Speed Logging VPN
- loggings
List<SecurityPolicy Logging> 
- matchStatistics StringPer Filter 
- Match Statistics per-filter - Choices: on,off
- mode String
- The policy mode - Choices: security,unified- Default value:security
- name String
- The name of the security policy
- tcpSyn StringFlood Limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- useCase String
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
- version Integer
- The version of the object
- auditTrail string
- Audit trail - Choices: on,off
- definitions
SecurityPolicy Definition[] 
- List of policy definitions
- description string
- The description of the security policy
- directInternet stringApplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- failureMode string
- Failure mode - Choices: open,close
- highSpeed stringLogging Server Ip 
- High Speed Logging Server IP
- highSpeed stringLogging Server Port 
- High Speed Logging Port
- highSpeed stringLogging Vpn 
- High Speed Logging VPN
- loggings
SecurityPolicy Logging[] 
- matchStatistics stringPer Filter 
- Match Statistics per-filter - Choices: on,off
- mode string
- The policy mode - Choices: security,unified- Default value:security
- name string
- The name of the security policy
- tcpSyn stringFlood Limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- useCase string
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
- version number
- The version of the object
- audit_trail str
- Audit trail - Choices: on,off
- definitions
Sequence[SecurityPolicy Definition Args] 
- List of policy definitions
- description str
- The description of the security policy
- direct_internet_ strapplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- failure_mode str
- Failure mode - Choices: open,close
- high_speed_ strlogging_ server_ ip 
- High Speed Logging Server IP
- high_speed_ strlogging_ server_ port 
- High Speed Logging Port
- high_speed_ strlogging_ vpn 
- High Speed Logging VPN
- loggings
Sequence[SecurityPolicy Logging Args] 
- match_statistics_ strper_ filter 
- Match Statistics per-filter - Choices: on,off
- mode str
- The policy mode - Choices: security,unified- Default value:security
- name str
- The name of the security policy
- tcp_syn_ strflood_ limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- use_case str
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
- version int
- The version of the object
- auditTrail String
- Audit trail - Choices: on,off
- definitions List<Property Map>
- List of policy definitions
- description String
- The description of the security policy
- directInternet StringApplications 
- Bypass firewall policy and allow all Internet traffic to/from VPN 0 - Choices: allow,deny
- failureMode String
- Failure mode - Choices: open,close
- highSpeed StringLogging Server Ip 
- High Speed Logging Server IP
- highSpeed StringLogging Server Port 
- High Speed Logging Port
- highSpeed StringLogging Vpn 
- High Speed Logging VPN
- loggings List<Property Map>
- matchStatistics StringPer Filter 
- Match Statistics per-filter - Choices: on,off
- mode String
- The policy mode - Choices: security,unified- Default value:security
- name String
- The name of the security policy
- tcpSyn StringFlood Limit 
- TCP SYN Flood Limit, value from 1 to 4294967295
- useCase String
- The use case of the security policy - Choices: custom,compliance,guestAccess,directCloudAccess,directInternetAccess,directCloudAccess- Default value:custom
- version Number
- The version of the object
Supporting Types
SecurityPolicyDefinition, SecurityPolicyDefinitionArgs      
SecurityPolicyLogging, SecurityPolicyLoggingArgs      
- ExternalSyslog stringServer Ip 
- External Syslog Server IP
- ExternalSyslog stringServer Vpn 
- External Syslog Server VPN
- ExternalSyslog stringServer Ip 
- External Syslog Server IP
- ExternalSyslog stringServer Vpn 
- External Syslog Server VPN
- externalSyslog StringServer Ip 
- External Syslog Server IP
- externalSyslog StringServer Vpn 
- External Syslog Server VPN
- externalSyslog stringServer Ip 
- External Syslog Server IP
- externalSyslog stringServer Vpn 
- External Syslog Server VPN
- external_syslog_ strserver_ ip 
- External Syslog Server IP
- external_syslog_ strserver_ vpn 
- External Syslog Server VPN
- externalSyslog StringServer Ip 
- External Syslog Server IP
- externalSyslog StringServer Vpn 
- External Syslog Server VPN
Import
$ pulumi import sdwan:index/securityPolicy:SecurityPolicy example "f6b2c44c-693c-4763-b010-895aa3d236bd"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the sdwanTerraform Provider.
