published on Friday, Mar 13, 2026 by Zscaler
published on Friday, Mar 13, 2026 by Zscaler
The zia.RiskProfile resource manages cloud application risk profiles in the Zscaler Internet Access (ZIA) cloud. Risk profiles define criteria for evaluating the security posture of cloud applications based on factors such as certifications, encryption, vulnerability disclosure, and more.
Example Usage
Basic Risk Profile
Example coming soon!
Example coming soon!
Example coming soon!
import * as zia from "@bdzscaler/pulumi-zia";
const example = new zia.RiskProfile("example", {
profileName: "Example Risk Profile",
profileType: "PREDEFINED",
status: "ENABLED",
riskIndex: [1, 2, 3],
certifications: ["CSA_STAR", "ISO_27001"],
});
import zscaler_pulumi_zia as zia
example = zia.RiskProfile("example",
profile_name="Example Risk Profile",
profile_type="PREDEFINED",
status="ENABLED",
risk_index=[1, 2, 3],
certifications=["CSA_STAR", "ISO_27001"],
)
resources:
example:
type: zia:RiskProfile
properties:
profileName: Example Risk Profile
profileType: PREDEFINED
status: ENABLED
riskIndex:
- 1
- 2
- 3
certifications:
- CSA_STAR
- ISO_27001
Create RiskProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RiskProfile(name: string, args: RiskProfileArgs, opts?: CustomResourceOptions);@overload
def RiskProfile(resource_name: str,
args: RiskProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RiskProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile_name: Optional[str] = None,
evasive: Optional[str] = None,
remote_screen_sharing: Optional[str] = None,
data_breach: Optional[str] = None,
data_encryption_in_transit: Optional[Sequence[str]] = None,
dns_caa_policy: Optional[str] = None,
domain_based_message_auth: Optional[str] = None,
domain_keys_identified_mail: Optional[str] = None,
admin_audit_logs: Optional[str] = None,
profile_type: Optional[str] = None,
file_sharing: Optional[str] = None,
http_security_headers: Optional[str] = None,
malware_scanning_for_content: Optional[str] = None,
mfa_support: Optional[str] = None,
password_strength: Optional[str] = None,
custom_tags: Optional[Sequence[int]] = None,
poor_items_of_service: Optional[str] = None,
exclude_certificates: Optional[int] = None,
certifications: Optional[Sequence[str]] = None,
risk_index: Optional[Sequence[int]] = None,
sender_policy_framework: Optional[str] = None,
source_ip_restrictions: Optional[str] = None,
ssl_cert_key_size: Optional[str] = None,
ssl_cert_validity: Optional[str] = None,
ssl_pinned: Optional[str] = None,
status: Optional[str] = None,
support_for_waf: Optional[str] = None,
vulnerability: Optional[str] = None,
vulnerability_disclosure: Optional[str] = None,
vulnerable_to_heart_bleed: Optional[str] = None,
vulnerable_to_log_jam: Optional[str] = None,
vulnerable_to_poodle: Optional[str] = None,
weak_cipher_support: Optional[str] = None)func NewRiskProfile(ctx *Context, name string, args RiskProfileArgs, opts ...ResourceOption) (*RiskProfile, error)public RiskProfile(string name, RiskProfileArgs args, CustomResourceOptions? opts = null)
public RiskProfile(String name, RiskProfileArgs args)
public RiskProfile(String name, RiskProfileArgs args, CustomResourceOptions options)
type: zia:RiskProfile
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 RiskProfileArgs
- 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 RiskProfileArgs
- 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 RiskProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RiskProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RiskProfileArgs
- 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 riskProfileResource = new Zia.RiskProfile("riskProfileResource", new()
{
ProfileName = "string",
Evasive = "string",
RemoteScreenSharing = "string",
DataBreach = "string",
DataEncryptionInTransit = new[]
{
"string",
},
DnsCaaPolicy = "string",
DomainBasedMessageAuth = "string",
DomainKeysIdentifiedMail = "string",
AdminAuditLogs = "string",
ProfileType = "string",
FileSharing = "string",
HttpSecurityHeaders = "string",
MalwareScanningForContent = "string",
MfaSupport = "string",
PasswordStrength = "string",
CustomTags = new[]
{
0,
},
PoorItemsOfService = "string",
ExcludeCertificates = 0,
Certifications = new[]
{
"string",
},
RiskIndex = new[]
{
0,
},
SenderPolicyFramework = "string",
SourceIpRestrictions = "string",
SslCertKeySize = "string",
SslCertValidity = "string",
SslPinned = "string",
Status = "string",
SupportForWaf = "string",
Vulnerability = "string",
VulnerabilityDisclosure = "string",
VulnerableToHeartBleed = "string",
VulnerableToLogJam = "string",
VulnerableToPoodle = "string",
WeakCipherSupport = "string",
});
example, err := zia.NewRiskProfile(ctx, "riskProfileResource", &zia.RiskProfileArgs{
ProfileName: pulumi.String("string"),
Evasive: pulumi.String("string"),
RemoteScreenSharing: pulumi.String("string"),
DataBreach: pulumi.String("string"),
DataEncryptionInTransit: pulumi.StringArray{
pulumi.String("string"),
},
DnsCaaPolicy: pulumi.String("string"),
DomainBasedMessageAuth: pulumi.String("string"),
DomainKeysIdentifiedMail: pulumi.String("string"),
AdminAuditLogs: pulumi.String("string"),
ProfileType: pulumi.String("string"),
FileSharing: pulumi.String("string"),
HttpSecurityHeaders: pulumi.String("string"),
MalwareScanningForContent: pulumi.String("string"),
MfaSupport: pulumi.String("string"),
PasswordStrength: pulumi.String("string"),
CustomTags: pulumi.IntArray{
pulumi.Int(0),
},
PoorItemsOfService: pulumi.String("string"),
ExcludeCertificates: pulumi.Int(0),
Certifications: pulumi.StringArray{
pulumi.String("string"),
},
RiskIndex: pulumi.IntArray{
pulumi.Int(0),
},
SenderPolicyFramework: pulumi.String("string"),
SourceIpRestrictions: pulumi.String("string"),
SslCertKeySize: pulumi.String("string"),
SslCertValidity: pulumi.String("string"),
SslPinned: pulumi.String("string"),
Status: pulumi.String("string"),
SupportForWaf: pulumi.String("string"),
Vulnerability: pulumi.String("string"),
VulnerabilityDisclosure: pulumi.String("string"),
VulnerableToHeartBleed: pulumi.String("string"),
VulnerableToLogJam: pulumi.String("string"),
VulnerableToPoodle: pulumi.String("string"),
WeakCipherSupport: pulumi.String("string"),
})
var riskProfileResource = new RiskProfile("riskProfileResource", RiskProfileArgs.builder()
.profileName("string")
.evasive("string")
.remoteScreenSharing("string")
.dataBreach("string")
.dataEncryptionInTransit("string")
.dnsCaaPolicy("string")
.domainBasedMessageAuth("string")
.domainKeysIdentifiedMail("string")
.adminAuditLogs("string")
.profileType("string")
.fileSharing("string")
.httpSecurityHeaders("string")
.malwareScanningForContent("string")
.mfaSupport("string")
.passwordStrength("string")
.customTags(0)
.poorItemsOfService("string")
.excludeCertificates(0)
.certifications("string")
.riskIndex(0)
.senderPolicyFramework("string")
.sourceIpRestrictions("string")
.sslCertKeySize("string")
.sslCertValidity("string")
.sslPinned("string")
.status("string")
.supportForWaf("string")
.vulnerability("string")
.vulnerabilityDisclosure("string")
.vulnerableToHeartBleed("string")
.vulnerableToLogJam("string")
.vulnerableToPoodle("string")
.weakCipherSupport("string")
.build());
risk_profile_resource = zia.RiskProfile("riskProfileResource",
profile_name="string",
evasive="string",
remote_screen_sharing="string",
data_breach="string",
data_encryption_in_transit=["string"],
dns_caa_policy="string",
domain_based_message_auth="string",
domain_keys_identified_mail="string",
admin_audit_logs="string",
profile_type="string",
file_sharing="string",
http_security_headers="string",
malware_scanning_for_content="string",
mfa_support="string",
password_strength="string",
custom_tags=[0],
poor_items_of_service="string",
exclude_certificates=0,
certifications=["string"],
risk_index=[0],
sender_policy_framework="string",
source_ip_restrictions="string",
ssl_cert_key_size="string",
ssl_cert_validity="string",
ssl_pinned="string",
status="string",
support_for_waf="string",
vulnerability="string",
vulnerability_disclosure="string",
vulnerable_to_heart_bleed="string",
vulnerable_to_log_jam="string",
vulnerable_to_poodle="string",
weak_cipher_support="string")
const riskProfileResource = new zia.RiskProfile("riskProfileResource", {
profileName: "string",
evasive: "string",
remoteScreenSharing: "string",
dataBreach: "string",
dataEncryptionInTransit: ["string"],
dnsCaaPolicy: "string",
domainBasedMessageAuth: "string",
domainKeysIdentifiedMail: "string",
adminAuditLogs: "string",
profileType: "string",
fileSharing: "string",
httpSecurityHeaders: "string",
malwareScanningForContent: "string",
mfaSupport: "string",
passwordStrength: "string",
customTags: [0],
poorItemsOfService: "string",
excludeCertificates: 0,
certifications: ["string"],
riskIndex: [0],
senderPolicyFramework: "string",
sourceIpRestrictions: "string",
sslCertKeySize: "string",
sslCertValidity: "string",
sslPinned: "string",
status: "string",
supportForWaf: "string",
vulnerability: "string",
vulnerabilityDisclosure: "string",
vulnerableToHeartBleed: "string",
vulnerableToLogJam: "string",
vulnerableToPoodle: "string",
weakCipherSupport: "string",
});
type: zia:RiskProfile
properties:
adminAuditLogs: string
certifications:
- string
customTags:
- 0
dataBreach: string
dataEncryptionInTransit:
- string
dnsCaaPolicy: string
domainBasedMessageAuth: string
domainKeysIdentifiedMail: string
evasive: string
excludeCertificates: 0
fileSharing: string
httpSecurityHeaders: string
malwareScanningForContent: string
mfaSupport: string
passwordStrength: string
poorItemsOfService: string
profileName: string
profileType: string
remoteScreenSharing: string
riskIndex:
- 0
senderPolicyFramework: string
sourceIpRestrictions: string
sslCertKeySize: string
sslCertValidity: string
sslPinned: string
status: string
supportForWaf: string
vulnerability: string
vulnerabilityDisclosure: string
vulnerableToHeartBleed: string
vulnerableToLogJam: string
vulnerableToPoodle: string
weakCipherSupport: string
RiskProfile 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 RiskProfile resource accepts the following input properties:
- Profile
Name string - Name of the risk profile.
- Admin
Audit stringLogs - Risk level for admin audit log support.
- Certifications List<string>
- List of required certifications (e.g., 'CSA_STAR', 'ISO_27001').
- List<int>
- List of custom tag IDs associated with the profile.
- Data
Breach string - Risk level for data breach history.
- Data
Encryption List<string>In Transit - List of data encryption in transit protocols.
- Dns
Caa stringPolicy - Risk level for DNS CAA policy.
- Domain
Based stringMessage Auth - Risk level for DMARC support.
- Domain
Keys stringIdentified Mail - Risk level for DKIM support.
- Evasive string
- Risk level for evasive behavior.
- Exclude
Certificates int - Number of certifications to exclude.
- File
Sharing string - Risk level for file sharing support.
- Http
Security stringHeaders - Risk level for HTTP security headers.
- Malware
Scanning stringFor Content - Risk level for malware scanning.
- Mfa
Support string - Risk level for MFA support.
- Password
Strength string - Risk level for password strength enforcement.
- Poor
Items stringOf Service - Risk level for poor items of service.
- Profile
Type string - The profile type (e.g., 'PREDEFINED', 'CUSTOM').
- Remote
Screen stringSharing - Risk level for remote screen sharing support.
- Risk
Index List<int> - List of risk index values.
- Sender
Policy stringFramework - Risk level for SPF support.
- Source
Ip stringRestrictions - Risk level for source IP restrictions.
- Ssl
Cert stringKey Size - Risk level for SSL certificate key size.
- Ssl
Cert stringValidity - Risk level for SSL certificate validity.
- Ssl
Pinned string - Risk level for SSL pinning.
- Status string
- The status of the risk profile (e.g., 'ENABLED', 'DISABLED').
- Support
For stringWaf - Risk level for WAF support.
- Vulnerability string
- Risk level for known vulnerabilities.
- Vulnerability
Disclosure string - Risk level for vulnerability disclosure policy.
- Vulnerable
To stringHeart Bleed - Risk level for HeartBleed vulnerability.
- Vulnerable
To stringLog Jam - Risk level for LogJam vulnerability.
- Vulnerable
To stringPoodle - Risk level for POODLE vulnerability.
- Weak
Cipher stringSupport - Risk level for weak cipher support.
- Profile
Name string - Name of the risk profile.
- Admin
Audit stringLogs - Risk level for admin audit log support.
- Certifications []string
- List of required certifications (e.g., 'CSA_STAR', 'ISO_27001').
- []int
- List of custom tag IDs associated with the profile.
- Data
Breach string - Risk level for data breach history.
- Data
Encryption []stringIn Transit - List of data encryption in transit protocols.
- Dns
Caa stringPolicy - Risk level for DNS CAA policy.
- Domain
Based stringMessage Auth - Risk level for DMARC support.
- Domain
Keys stringIdentified Mail - Risk level for DKIM support.
- Evasive string
- Risk level for evasive behavior.
- Exclude
Certificates int - Number of certifications to exclude.
- File
Sharing string - Risk level for file sharing support.
- Http
Security stringHeaders - Risk level for HTTP security headers.
- Malware
Scanning stringFor Content - Risk level for malware scanning.
- Mfa
Support string - Risk level for MFA support.
- Password
Strength string - Risk level for password strength enforcement.
- Poor
Items stringOf Service - Risk level for poor items of service.
- Profile
Type string - The profile type (e.g., 'PREDEFINED', 'CUSTOM').
- Remote
Screen stringSharing - Risk level for remote screen sharing support.
- Risk
Index []int - List of risk index values.
- Sender
Policy stringFramework - Risk level for SPF support.
- Source
Ip stringRestrictions - Risk level for source IP restrictions.
- Ssl
Cert stringKey Size - Risk level for SSL certificate key size.
- Ssl
Cert stringValidity - Risk level for SSL certificate validity.
- Ssl
Pinned string - Risk level for SSL pinning.
- Status string
- The status of the risk profile (e.g., 'ENABLED', 'DISABLED').
- Support
For stringWaf - Risk level for WAF support.
- Vulnerability string
- Risk level for known vulnerabilities.
- Vulnerability
Disclosure string - Risk level for vulnerability disclosure policy.
- Vulnerable
To stringHeart Bleed - Risk level for HeartBleed vulnerability.
- Vulnerable
To stringLog Jam - Risk level for LogJam vulnerability.
- Vulnerable
To stringPoodle - Risk level for POODLE vulnerability.
- Weak
Cipher stringSupport - Risk level for weak cipher support.
- profile
Name String - Name of the risk profile.
- admin
Audit StringLogs - Risk level for admin audit log support.
- certifications List<String>
- List of required certifications (e.g., 'CSA_STAR', 'ISO_27001').
- List<Integer>
- List of custom tag IDs associated with the profile.
- data
Breach String - Risk level for data breach history.
- data
Encryption List<String>In Transit - List of data encryption in transit protocols.
- dns
Caa StringPolicy - Risk level for DNS CAA policy.
- domain
Based StringMessage Auth - Risk level for DMARC support.
- domain
Keys StringIdentified Mail - Risk level for DKIM support.
- evasive String
- Risk level for evasive behavior.
- exclude
Certificates Integer - Number of certifications to exclude.
- file
Sharing String - Risk level for file sharing support.
- http
Security StringHeaders - Risk level for HTTP security headers.
- malware
Scanning StringFor Content - Risk level for malware scanning.
- mfa
Support String - Risk level for MFA support.
- password
Strength String - Risk level for password strength enforcement.
- poor
Items StringOf Service - Risk level for poor items of service.
- profile
Type String - The profile type (e.g., 'PREDEFINED', 'CUSTOM').
- remote
Screen StringSharing - Risk level for remote screen sharing support.
- risk
Index List<Integer> - List of risk index values.
- sender
Policy StringFramework - Risk level for SPF support.
- source
Ip StringRestrictions - Risk level for source IP restrictions.
- ssl
Cert StringKey Size - Risk level for SSL certificate key size.
- ssl
Cert StringValidity - Risk level for SSL certificate validity.
- ssl
Pinned String - Risk level for SSL pinning.
- status String
- The status of the risk profile (e.g., 'ENABLED', 'DISABLED').
- support
For StringWaf - Risk level for WAF support.
- vulnerability String
- Risk level for known vulnerabilities.
- vulnerability
Disclosure String - Risk level for vulnerability disclosure policy.
- vulnerable
To StringHeart Bleed - Risk level for HeartBleed vulnerability.
- vulnerable
To StringLog Jam - Risk level for LogJam vulnerability.
- vulnerable
To StringPoodle - Risk level for POODLE vulnerability.
- weak
Cipher StringSupport - Risk level for weak cipher support.
- profile
Name string - Name of the risk profile.
- admin
Audit stringLogs - Risk level for admin audit log support.
- certifications string[]
- List of required certifications (e.g., 'CSA_STAR', 'ISO_27001').
- number[]
- List of custom tag IDs associated with the profile.
- data
Breach string - Risk level for data breach history.
- data
Encryption string[]In Transit - List of data encryption in transit protocols.
- dns
Caa stringPolicy - Risk level for DNS CAA policy.
- domain
Based stringMessage Auth - Risk level for DMARC support.
- domain
Keys stringIdentified Mail - Risk level for DKIM support.
- evasive string
- Risk level for evasive behavior.
- exclude
Certificates number - Number of certifications to exclude.
- file
Sharing string - Risk level for file sharing support.
- http
Security stringHeaders - Risk level for HTTP security headers.
- malware
Scanning stringFor Content - Risk level for malware scanning.
- mfa
Support string - Risk level for MFA support.
- password
Strength string - Risk level for password strength enforcement.
- poor
Items stringOf Service - Risk level for poor items of service.
- profile
Type string - The profile type (e.g., 'PREDEFINED', 'CUSTOM').
- remote
Screen stringSharing - Risk level for remote screen sharing support.
- risk
Index number[] - List of risk index values.
- sender
Policy stringFramework - Risk level for SPF support.
- source
Ip stringRestrictions - Risk level for source IP restrictions.
- ssl
Cert stringKey Size - Risk level for SSL certificate key size.
- ssl
Cert stringValidity - Risk level for SSL certificate validity.
- ssl
Pinned string - Risk level for SSL pinning.
- status string
- The status of the risk profile (e.g., 'ENABLED', 'DISABLED').
- support
For stringWaf - Risk level for WAF support.
- vulnerability string
- Risk level for known vulnerabilities.
- vulnerability
Disclosure string - Risk level for vulnerability disclosure policy.
- vulnerable
To stringHeart Bleed - Risk level for HeartBleed vulnerability.
- vulnerable
To stringLog Jam - Risk level for LogJam vulnerability.
- vulnerable
To stringPoodle - Risk level for POODLE vulnerability.
- weak
Cipher stringSupport - Risk level for weak cipher support.
- profile_
name str - Name of the risk profile.
- admin_
audit_ strlogs - Risk level for admin audit log support.
- certifications Sequence[str]
- List of required certifications (e.g., 'CSA_STAR', 'ISO_27001').
- Sequence[int]
- List of custom tag IDs associated with the profile.
- data_
breach str - Risk level for data breach history.
- data_
encryption_ Sequence[str]in_ transit - List of data encryption in transit protocols.
- dns_
caa_ strpolicy - Risk level for DNS CAA policy.
- domain_
based_ strmessage_ auth - Risk level for DMARC support.
- domain_
keys_ stridentified_ mail - Risk level for DKIM support.
- evasive str
- Risk level for evasive behavior.
- exclude_
certificates int - Number of certifications to exclude.
- file_
sharing str - Risk level for file sharing support.
- http_
security_ strheaders - Risk level for HTTP security headers.
- malware_
scanning_ strfor_ content - Risk level for malware scanning.
- mfa_
support str - Risk level for MFA support.
- password_
strength str - Risk level for password strength enforcement.
- poor_
items_ strof_ service - Risk level for poor items of service.
- profile_
type str - The profile type (e.g., 'PREDEFINED', 'CUSTOM').
- remote_
screen_ strsharing - Risk level for remote screen sharing support.
- risk_
index Sequence[int] - List of risk index values.
- sender_
policy_ strframework - Risk level for SPF support.
- source_
ip_ strrestrictions - Risk level for source IP restrictions.
- ssl_
cert_ strkey_ size - Risk level for SSL certificate key size.
- ssl_
cert_ strvalidity - Risk level for SSL certificate validity.
- ssl_
pinned str - Risk level for SSL pinning.
- status str
- The status of the risk profile (e.g., 'ENABLED', 'DISABLED').
- support_
for_ strwaf - Risk level for WAF support.
- vulnerability str
- Risk level for known vulnerabilities.
- vulnerability_
disclosure str - Risk level for vulnerability disclosure policy.
- vulnerable_
to_ strheart_ bleed - Risk level for HeartBleed vulnerability.
- vulnerable_
to_ strlog_ jam - Risk level for LogJam vulnerability.
- vulnerable_
to_ strpoodle - Risk level for POODLE vulnerability.
- weak_
cipher_ strsupport - Risk level for weak cipher support.
- profile
Name String - Name of the risk profile.
- admin
Audit StringLogs - Risk level for admin audit log support.
- certifications List<String>
- List of required certifications (e.g., 'CSA_STAR', 'ISO_27001').
- List<Number>
- List of custom tag IDs associated with the profile.
- data
Breach String - Risk level for data breach history.
- data
Encryption List<String>In Transit - List of data encryption in transit protocols.
- dns
Caa StringPolicy - Risk level for DNS CAA policy.
- domain
Based StringMessage Auth - Risk level for DMARC support.
- domain
Keys StringIdentified Mail - Risk level for DKIM support.
- evasive String
- Risk level for evasive behavior.
- exclude
Certificates Number - Number of certifications to exclude.
- file
Sharing String - Risk level for file sharing support.
- http
Security StringHeaders - Risk level for HTTP security headers.
- malware
Scanning StringFor Content - Risk level for malware scanning.
- mfa
Support String - Risk level for MFA support.
- password
Strength String - Risk level for password strength enforcement.
- poor
Items StringOf Service - Risk level for poor items of service.
- profile
Type String - The profile type (e.g., 'PREDEFINED', 'CUSTOM').
- remote
Screen StringSharing - Risk level for remote screen sharing support.
- risk
Index List<Number> - List of risk index values.
- sender
Policy StringFramework - Risk level for SPF support.
- source
Ip StringRestrictions - Risk level for source IP restrictions.
- ssl
Cert StringKey Size - Risk level for SSL certificate key size.
- ssl
Cert StringValidity - Risk level for SSL certificate validity.
- ssl
Pinned String - Risk level for SSL pinning.
- status String
- The status of the risk profile (e.g., 'ENABLED', 'DISABLED').
- support
For StringWaf - Risk level for WAF support.
- vulnerability String
- Risk level for known vulnerabilities.
- vulnerability
Disclosure String - Risk level for vulnerability disclosure policy.
- vulnerable
To StringHeart Bleed - Risk level for HeartBleed vulnerability.
- vulnerable
To StringLog Jam - Risk level for LogJam vulnerability.
- vulnerable
To StringPoodle - Risk level for POODLE vulnerability.
- weak
Cipher StringSupport - Risk level for weak cipher support.
Outputs
All input properties are implicitly available as output properties. Additionally, the RiskProfile resource produces the following output properties:
- id str
- The provider-assigned unique ID for this managed resource.
- profile_
id int - The unique identifier for the risk profile assigned by the ZIA cloud.
Import
An existing risk profile can be imported using its ID, e.g.
$ pulumi import zia:index:RiskProfile example 12345
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- zia zscaler/pulumi-zia
- License
published on Friday, Mar 13, 2026 by Zscaler
