zpa.ApplicationSegmentBrowserAccess
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as zpa from "@bdzscaler/pulumi-zpa";
import * as zpa from "@pulumi/zpa";
const testCert = zpa.getBaCertificate({
name: "sales.acme.com",
});
// ZPA Segment Group resource
const exampleSegmentGroup = new zpa.SegmentGroup("exampleSegmentGroup", {
description: "Example",
enabled: true,
});
const exampleAppConnectorGroup = zpa.getAppConnectorGroup({
name: "AWS-Connector",
});
// ZPA Server Group resource
const exampleServerGroup = new zpa.ServerGroup("exampleServerGroup", {
description: "Example",
enabled: true,
dynamicDiscovery: true,
appConnectorGroups: [{
ids: [exampleAppConnectorGroup.then(exampleAppConnectorGroup => exampleAppConnectorGroup.id)],
}],
});
// Create Browser Access Application
const browserAccessApps = new zpa.ApplicationSegmentBrowserAccess("browserAccessApps", {
description: "Browser Access Apps",
enabled: true,
healthReporting: "ON_ACCESS",
bypassType: "NEVER",
tcpPortRanges: [
"80",
"80",
],
domainNames: ["sales.acme.com"],
segmentGroupId: exampleSegmentGroup.id,
clientlessApps: [{
name: "sales.acme.com",
applicationProtocol: "HTTP",
applicationPort: "80",
certificateId: testCert.then(testCert => testCert.id),
trustUntrustedCert: true,
enabled: true,
domain: "sales.acme.com",
}],
serverGroups: [{
ids: [exampleServerGroup.id],
}],
});
import pulumi
import pulumi_zpa as zpa
import zscaler_pulumi_zpa as zpa
test_cert = zpa.get_ba_certificate(name="sales.acme.com")
# ZPA Segment Group resource
example_segment_group = zpa.SegmentGroup("exampleSegmentGroup",
description="Example",
enabled=True)
example_app_connector_group = zpa.get_app_connector_group(name="AWS-Connector")
# ZPA Server Group resource
example_server_group = zpa.ServerGroup("exampleServerGroup",
description="Example",
enabled=True,
dynamic_discovery=True,
app_connector_groups=[zpa.ServerGroupAppConnectorGroupArgs(
ids=[example_app_connector_group.id],
)])
# Create Browser Access Application
browser_access_apps = zpa.ApplicationSegmentBrowserAccess("browserAccessApps",
description="Browser Access Apps",
enabled=True,
health_reporting="ON_ACCESS",
bypass_type="NEVER",
tcp_port_ranges=[
"80",
"80",
],
domain_names=["sales.acme.com"],
segment_group_id=example_segment_group.id,
clientless_apps=[zpa.ApplicationSegmentBrowserAccessClientlessAppArgs(
name="sales.acme.com",
application_protocol="HTTP",
application_port="80",
certificate_id=test_cert.id,
trust_untrusted_cert=True,
enabled=True,
domain="sales.acme.com",
)],
server_groups=[zpa.ApplicationSegmentBrowserAccessServerGroupArgs(
ids=[example_server_group.id],
)])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/zscaler/pulumi-zpa/sdk/go/zpa"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
testCert, err := zpa.GetBaCertificate(ctx, &zpa.GetBaCertificateArgs{
Name: pulumi.StringRef("sales.acme.com"),
}, nil)
if err != nil {
return err
}
// ZPA Segment Group resource
exampleSegmentGroup, err := zpa.NewSegmentGroup(ctx, "exampleSegmentGroup", &zpa.SegmentGroupArgs{
Description: pulumi.String("Example"),
Enabled: pulumi.Bool(true),
})
if err != nil {
return err
}
exampleAppConnectorGroup, err := zpa.GetAppConnectorGroup(ctx, &zpa.GetAppConnectorGroupArgs{
Name: pulumi.StringRef("AWS-Connector"),
}, nil)
if err != nil {
return err
}
// ZPA Server Group resource
exampleServerGroup, err := zpa.NewServerGroup(ctx, "exampleServerGroup", &zpa.ServerGroupArgs{
Description: pulumi.String("Example"),
Enabled: pulumi.Bool(true),
DynamicDiscovery: pulumi.Bool(true),
AppConnectorGroups: zpa.ServerGroupAppConnectorGroupArray{
&zpa.ServerGroupAppConnectorGroupArgs{
Ids: pulumi.StringArray{
pulumi.String(exampleAppConnectorGroup.Id),
},
},
},
})
if err != nil {
return err
}
// Create Browser Access Application
_, err = zpa.NewApplicationSegmentBrowserAccess(ctx, "browserAccessApps", &zpa.ApplicationSegmentBrowserAccessArgs{
Description: pulumi.String("Browser Access Apps"),
Enabled: pulumi.Bool(true),
HealthReporting: pulumi.String("ON_ACCESS"),
BypassType: pulumi.String("NEVER"),
TcpPortRanges: pulumi.StringArray{
pulumi.String("80"),
pulumi.String("80"),
},
DomainNames: pulumi.StringArray{
pulumi.String("sales.acme.com"),
},
SegmentGroupId: exampleSegmentGroup.ID(),
ClientlessApps: zpa.ApplicationSegmentBrowserAccessClientlessAppArray{
&zpa.ApplicationSegmentBrowserAccessClientlessAppArgs{
Name: pulumi.String("sales.acme.com"),
ApplicationProtocol: pulumi.String("HTTP"),
ApplicationPort: pulumi.String("80"),
CertificateId: pulumi.String(testCert.Id),
TrustUntrustedCert: pulumi.Bool(true),
Enabled: pulumi.Bool(true),
Domain: pulumi.String("sales.acme.com"),
},
},
ServerGroups: zpa.ApplicationSegmentBrowserAccessServerGroupArray{
&zpa.ApplicationSegmentBrowserAccessServerGroupArgs{
Ids: pulumi.StringArray{
exampleServerGroup.ID(),
},
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Zpa = Pulumi.Zpa;
using Zpa = Zscaler.Zpa;
return await Deployment.RunAsync(() =>
{
var testCert = Zpa.GetBaCertificate.Invoke(new()
{
Name = "sales.acme.com",
});
// ZPA Segment Group resource
var exampleSegmentGroup = new Zpa.SegmentGroup("exampleSegmentGroup", new()
{
Description = "Example",
Enabled = true,
});
var exampleAppConnectorGroup = Zpa.GetAppConnectorGroup.Invoke(new()
{
Name = "AWS-Connector",
});
// ZPA Server Group resource
var exampleServerGroup = new Zpa.ServerGroup("exampleServerGroup", new()
{
Description = "Example",
Enabled = true,
DynamicDiscovery = true,
AppConnectorGroups = new[]
{
new Zpa.Inputs.ServerGroupAppConnectorGroupArgs
{
Ids = new[]
{
exampleAppConnectorGroup.Apply(getAppConnectorGroupResult => getAppConnectorGroupResult.Id),
},
},
},
});
// Create Browser Access Application
var browserAccessApps = new Zpa.ApplicationSegmentBrowserAccess("browserAccessApps", new()
{
Description = "Browser Access Apps",
Enabled = true,
HealthReporting = "ON_ACCESS",
BypassType = "NEVER",
TcpPortRanges = new[]
{
"80",
"80",
},
DomainNames = new[]
{
"sales.acme.com",
},
SegmentGroupId = exampleSegmentGroup.Id,
ClientlessApps = new[]
{
new Zpa.Inputs.ApplicationSegmentBrowserAccessClientlessAppArgs
{
Name = "sales.acme.com",
ApplicationProtocol = "HTTP",
ApplicationPort = "80",
CertificateId = testCert.Apply(getBaCertificateResult => getBaCertificateResult.Id),
TrustUntrustedCert = true,
Enabled = true,
Domain = "sales.acme.com",
},
},
ServerGroups = new[]
{
new Zpa.Inputs.ApplicationSegmentBrowserAccessServerGroupArgs
{
Ids = new[]
{
exampleServerGroup.Id,
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zpa.ZpaFunctions;
import com.pulumi.zpa.inputs.GetBaCertificateArgs;
import com.pulumi.zpa.SegmentGroup;
import com.pulumi.zpa.SegmentGroupArgs;
import com.pulumi.zpa.inputs.GetAppConnectorGroupArgs;
import com.pulumi.zpa.ServerGroup;
import com.pulumi.zpa.ServerGroupArgs;
import com.pulumi.zpa.inputs.ServerGroupAppConnectorGroupArgs;
import com.pulumi.zpa.ApplicationSegmentBrowserAccess;
import com.pulumi.zpa.ApplicationSegmentBrowserAccessArgs;
import com.pulumi.zpa.inputs.ApplicationSegmentBrowserAccessClientlessAppArgs;
import com.pulumi.zpa.inputs.ApplicationSegmentBrowserAccessServerGroupArgs;
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) {
final var testCert = ZpaFunctions.getBaCertificate(GetBaCertificateArgs.builder()
.name("sales.acme.com")
.build());
// ZPA Segment Group resource
var exampleSegmentGroup = new SegmentGroup("exampleSegmentGroup", SegmentGroupArgs.builder()
.description("Example")
.enabled(true)
.build());
final var exampleAppConnectorGroup = ZpaFunctions.getAppConnectorGroup(GetAppConnectorGroupArgs.builder()
.name("AWS-Connector")
.build());
// ZPA Server Group resource
var exampleServerGroup = new ServerGroup("exampleServerGroup", ServerGroupArgs.builder()
.description("Example")
.enabled(true)
.dynamicDiscovery(true)
.appConnectorGroups(ServerGroupAppConnectorGroupArgs.builder()
.ids(exampleAppConnectorGroup.applyValue(getAppConnectorGroupResult -> getAppConnectorGroupResult.id()))
.build())
.build());
// Create Browser Access Application
var browserAccessApps = new ApplicationSegmentBrowserAccess("browserAccessApps", ApplicationSegmentBrowserAccessArgs.builder()
.description("Browser Access Apps")
.enabled(true)
.healthReporting("ON_ACCESS")
.bypassType("NEVER")
.tcpPortRanges(
"80",
"80")
.domainNames("sales.acme.com")
.segmentGroupId(exampleSegmentGroup.id())
.clientlessApps(ApplicationSegmentBrowserAccessClientlessAppArgs.builder()
.name("sales.acme.com")
.applicationProtocol("HTTP")
.applicationPort("80")
.certificateId(testCert.applyValue(getBaCertificateResult -> getBaCertificateResult.id()))
.trustUntrustedCert(true)
.enabled(true)
.domain("sales.acme.com")
.build())
.serverGroups(ApplicationSegmentBrowserAccessServerGroupArgs.builder()
.ids(exampleServerGroup.id())
.build())
.build());
}
}
resources:
# Create Browser Access Application
browserAccessApps:
type: zpa:ApplicationSegmentBrowserAccess
properties:
description: Browser Access Apps
enabled: true
healthReporting: ON_ACCESS
bypassType: NEVER
tcpPortRanges:
- '80'
- '80'
domainNames:
- sales.acme.com
segmentGroupId: ${exampleSegmentGroup.id}
clientlessApps:
- name: sales.acme.com
applicationProtocol: HTTP
applicationPort: '80'
certificateId: ${testCert.id}
trustUntrustedCert: true
enabled: true
domain: sales.acme.com
serverGroups:
- ids:
- ${exampleServerGroup.id}
# ZPA Segment Group resource
exampleSegmentGroup:
type: zpa:SegmentGroup
properties:
description: Example
enabled: true
# ZPA Server Group resource
exampleServerGroup:
type: zpa:ServerGroup
properties:
description: Example
enabled: true
dynamicDiscovery: true
appConnectorGroups:
- ids:
- ${exampleAppConnectorGroup.id}
variables:
testCert:
fn::invoke:
Function: zpa:getBaCertificate
Arguments:
name: sales.acme.com
exampleAppConnectorGroup:
fn::invoke:
Function: zpa:getAppConnectorGroup
Arguments:
name: AWS-Connector
Create ApplicationSegmentBrowserAccess Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ApplicationSegmentBrowserAccess(name: string, args: ApplicationSegmentBrowserAccessArgs, opts?: CustomResourceOptions);
@overload
def ApplicationSegmentBrowserAccess(resource_name: str,
args: ApplicationSegmentBrowserAccessArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ApplicationSegmentBrowserAccess(resource_name: str,
opts: Optional[ResourceOptions] = None,
domain_names: Optional[Sequence[str]] = None,
clientless_apps: Optional[Sequence[ApplicationSegmentBrowserAccessClientlessAppArgs]] = None,
segment_group_id: Optional[str] = None,
is_incomplete_dr_config: Optional[bool] = None,
name: Optional[str] = None,
double_encrypt: Optional[bool] = None,
enabled: Optional[bool] = None,
health_check_type: Optional[str] = None,
health_reporting: Optional[str] = None,
icmp_access_type: Optional[str] = None,
ip_anchored: Optional[bool] = None,
is_cname_enabled: Optional[bool] = None,
bypass_type: Optional[str] = None,
match_style: Optional[str] = None,
description: Optional[str] = None,
passive_health_enabled: Optional[bool] = None,
config_space: Optional[str] = None,
segment_group_name: Optional[str] = None,
select_connector_close_to_app: Optional[bool] = None,
server_groups: Optional[Sequence[ApplicationSegmentBrowserAccessServerGroupArgs]] = None,
tcp_keep_alive: Optional[str] = None,
tcp_port_range: Optional[Sequence[ApplicationSegmentBrowserAccessTcpPortRangeArgs]] = None,
tcp_port_ranges: Optional[Sequence[str]] = None,
udp_port_range: Optional[Sequence[ApplicationSegmentBrowserAccessUdpPortRangeArgs]] = None,
udp_port_ranges: Optional[Sequence[str]] = None,
use_in_dr_mode: Optional[bool] = None)
func NewApplicationSegmentBrowserAccess(ctx *Context, name string, args ApplicationSegmentBrowserAccessArgs, opts ...ResourceOption) (*ApplicationSegmentBrowserAccess, error)
public ApplicationSegmentBrowserAccess(string name, ApplicationSegmentBrowserAccessArgs args, CustomResourceOptions? opts = null)
public ApplicationSegmentBrowserAccess(String name, ApplicationSegmentBrowserAccessArgs args)
public ApplicationSegmentBrowserAccess(String name, ApplicationSegmentBrowserAccessArgs args, CustomResourceOptions options)
type: zpa:ApplicationSegmentBrowserAccess
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 ApplicationSegmentBrowserAccessArgs
- 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 ApplicationSegmentBrowserAccessArgs
- 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 ApplicationSegmentBrowserAccessArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ApplicationSegmentBrowserAccessArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ApplicationSegmentBrowserAccessArgs
- 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 applicationSegmentBrowserAccessResource = new Zpa.ApplicationSegmentBrowserAccess("applicationSegmentBrowserAccessResource", new()
{
DomainNames = new[]
{
"string",
},
ClientlessApps = new[]
{
new Zpa.Inputs.ApplicationSegmentBrowserAccessClientlessAppArgs
{
Name = "string",
ApplicationPort = "string",
ApplicationProtocol = "string",
Domain = "string",
Cname = "string",
Description = "string",
AllowOptions = false,
Enabled = false,
Hidden = false,
Id = "string",
LocalDomain = "string",
CertificateId = "string",
Path = "string",
TrustUntrustedCert = false,
},
},
SegmentGroupId = "string",
IsIncompleteDrConfig = false,
Name = "string",
DoubleEncrypt = false,
Enabled = false,
HealthCheckType = "string",
HealthReporting = "string",
IcmpAccessType = "string",
IpAnchored = false,
IsCnameEnabled = false,
BypassType = "string",
MatchStyle = "string",
Description = "string",
PassiveHealthEnabled = false,
ConfigSpace = "string",
SegmentGroupName = "string",
SelectConnectorCloseToApp = false,
ServerGroups = new[]
{
new Zpa.Inputs.ApplicationSegmentBrowserAccessServerGroupArgs
{
Ids = new[]
{
"string",
},
},
},
TcpKeepAlive = "string",
TcpPortRange = new[]
{
new Zpa.Inputs.ApplicationSegmentBrowserAccessTcpPortRangeArgs
{
From = "string",
To = "string",
},
},
TcpPortRanges = new[]
{
"string",
},
UdpPortRange = new[]
{
new Zpa.Inputs.ApplicationSegmentBrowserAccessUdpPortRangeArgs
{
From = "string",
To = "string",
},
},
UdpPortRanges = new[]
{
"string",
},
UseInDrMode = false,
});
example, err := zpa.NewApplicationSegmentBrowserAccess(ctx, "applicationSegmentBrowserAccessResource", &zpa.ApplicationSegmentBrowserAccessArgs{
DomainNames: pulumi.StringArray{
pulumi.String("string"),
},
ClientlessApps: zpa.ApplicationSegmentBrowserAccessClientlessAppArray{
&zpa.ApplicationSegmentBrowserAccessClientlessAppArgs{
Name: pulumi.String("string"),
ApplicationPort: pulumi.String("string"),
ApplicationProtocol: pulumi.String("string"),
Domain: pulumi.String("string"),
Cname: pulumi.String("string"),
Description: pulumi.String("string"),
AllowOptions: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
Hidden: pulumi.Bool(false),
Id: pulumi.String("string"),
LocalDomain: pulumi.String("string"),
CertificateId: pulumi.String("string"),
Path: pulumi.String("string"),
TrustUntrustedCert: pulumi.Bool(false),
},
},
SegmentGroupId: pulumi.String("string"),
IsIncompleteDrConfig: pulumi.Bool(false),
Name: pulumi.String("string"),
DoubleEncrypt: pulumi.Bool(false),
Enabled: pulumi.Bool(false),
HealthCheckType: pulumi.String("string"),
HealthReporting: pulumi.String("string"),
IcmpAccessType: pulumi.String("string"),
IpAnchored: pulumi.Bool(false),
IsCnameEnabled: pulumi.Bool(false),
BypassType: pulumi.String("string"),
MatchStyle: pulumi.String("string"),
Description: pulumi.String("string"),
PassiveHealthEnabled: pulumi.Bool(false),
ConfigSpace: pulumi.String("string"),
SegmentGroupName: pulumi.String("string"),
SelectConnectorCloseToApp: pulumi.Bool(false),
ServerGroups: zpa.ApplicationSegmentBrowserAccessServerGroupArray{
&zpa.ApplicationSegmentBrowserAccessServerGroupArgs{
Ids: pulumi.StringArray{
pulumi.String("string"),
},
},
},
TcpKeepAlive: pulumi.String("string"),
TcpPortRange: zpa.ApplicationSegmentBrowserAccessTcpPortRangeArray{
&zpa.ApplicationSegmentBrowserAccessTcpPortRangeArgs{
From: pulumi.String("string"),
To: pulumi.String("string"),
},
},
TcpPortRanges: pulumi.StringArray{
pulumi.String("string"),
},
UdpPortRange: zpa.ApplicationSegmentBrowserAccessUdpPortRangeArray{
&zpa.ApplicationSegmentBrowserAccessUdpPortRangeArgs{
From: pulumi.String("string"),
To: pulumi.String("string"),
},
},
UdpPortRanges: pulumi.StringArray{
pulumi.String("string"),
},
UseInDrMode: pulumi.Bool(false),
})
var applicationSegmentBrowserAccessResource = new ApplicationSegmentBrowserAccess("applicationSegmentBrowserAccessResource", ApplicationSegmentBrowserAccessArgs.builder()
.domainNames("string")
.clientlessApps(ApplicationSegmentBrowserAccessClientlessAppArgs.builder()
.name("string")
.applicationPort("string")
.applicationProtocol("string")
.domain("string")
.cname("string")
.description("string")
.allowOptions(false)
.enabled(false)
.hidden(false)
.id("string")
.localDomain("string")
.certificateId("string")
.path("string")
.trustUntrustedCert(false)
.build())
.segmentGroupId("string")
.isIncompleteDrConfig(false)
.name("string")
.doubleEncrypt(false)
.enabled(false)
.healthCheckType("string")
.healthReporting("string")
.icmpAccessType("string")
.ipAnchored(false)
.isCnameEnabled(false)
.bypassType("string")
.matchStyle("string")
.description("string")
.passiveHealthEnabled(false)
.configSpace("string")
.segmentGroupName("string")
.selectConnectorCloseToApp(false)
.serverGroups(ApplicationSegmentBrowserAccessServerGroupArgs.builder()
.ids("string")
.build())
.tcpKeepAlive("string")
.tcpPortRange(ApplicationSegmentBrowserAccessTcpPortRangeArgs.builder()
.from("string")
.to("string")
.build())
.tcpPortRanges("string")
.udpPortRange(ApplicationSegmentBrowserAccessUdpPortRangeArgs.builder()
.from("string")
.to("string")
.build())
.udpPortRanges("string")
.useInDrMode(false)
.build());
application_segment_browser_access_resource = zpa.ApplicationSegmentBrowserAccess("applicationSegmentBrowserAccessResource",
domain_names=["string"],
clientless_apps=[zpa.ApplicationSegmentBrowserAccessClientlessAppArgs(
name="string",
application_port="string",
application_protocol="string",
domain="string",
cname="string",
description="string",
allow_options=False,
enabled=False,
hidden=False,
id="string",
local_domain="string",
certificate_id="string",
path="string",
trust_untrusted_cert=False,
)],
segment_group_id="string",
is_incomplete_dr_config=False,
name="string",
double_encrypt=False,
enabled=False,
health_check_type="string",
health_reporting="string",
icmp_access_type="string",
ip_anchored=False,
is_cname_enabled=False,
bypass_type="string",
match_style="string",
description="string",
passive_health_enabled=False,
config_space="string",
segment_group_name="string",
select_connector_close_to_app=False,
server_groups=[zpa.ApplicationSegmentBrowserAccessServerGroupArgs(
ids=["string"],
)],
tcp_keep_alive="string",
tcp_port_range=[zpa.ApplicationSegmentBrowserAccessTcpPortRangeArgs(
from_="string",
to="string",
)],
tcp_port_ranges=["string"],
udp_port_range=[zpa.ApplicationSegmentBrowserAccessUdpPortRangeArgs(
from_="string",
to="string",
)],
udp_port_ranges=["string"],
use_in_dr_mode=False)
const applicationSegmentBrowserAccessResource = new zpa.ApplicationSegmentBrowserAccess("applicationSegmentBrowserAccessResource", {
domainNames: ["string"],
clientlessApps: [{
name: "string",
applicationPort: "string",
applicationProtocol: "string",
domain: "string",
cname: "string",
description: "string",
allowOptions: false,
enabled: false,
hidden: false,
id: "string",
localDomain: "string",
certificateId: "string",
path: "string",
trustUntrustedCert: false,
}],
segmentGroupId: "string",
isIncompleteDrConfig: false,
name: "string",
doubleEncrypt: false,
enabled: false,
healthCheckType: "string",
healthReporting: "string",
icmpAccessType: "string",
ipAnchored: false,
isCnameEnabled: false,
bypassType: "string",
matchStyle: "string",
description: "string",
passiveHealthEnabled: false,
configSpace: "string",
segmentGroupName: "string",
selectConnectorCloseToApp: false,
serverGroups: [{
ids: ["string"],
}],
tcpKeepAlive: "string",
tcpPortRange: [{
from: "string",
to: "string",
}],
tcpPortRanges: ["string"],
udpPortRange: [{
from: "string",
to: "string",
}],
udpPortRanges: ["string"],
useInDrMode: false,
});
type: zpa:ApplicationSegmentBrowserAccess
properties:
bypassType: string
clientlessApps:
- allowOptions: false
applicationPort: string
applicationProtocol: string
certificateId: string
cname: string
description: string
domain: string
enabled: false
hidden: false
id: string
localDomain: string
name: string
path: string
trustUntrustedCert: false
configSpace: string
description: string
domainNames:
- string
doubleEncrypt: false
enabled: false
healthCheckType: string
healthReporting: string
icmpAccessType: string
ipAnchored: false
isCnameEnabled: false
isIncompleteDrConfig: false
matchStyle: string
name: string
passiveHealthEnabled: false
segmentGroupId: string
segmentGroupName: string
selectConnectorCloseToApp: false
serverGroups:
- ids:
- string
tcpKeepAlive: string
tcpPortRange:
- from: string
to: string
tcpPortRanges:
- string
udpPortRange:
- from: string
to: string
udpPortRanges:
- string
useInDrMode: false
ApplicationSegmentBrowserAccess Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ApplicationSegmentBrowserAccess resource accepts the following input properties:
- Clientless
Apps List<Zscaler.Zpa. Inputs. Application Segment Browser Access Clientless App> - Domain
Names List<string> - List of domains and IPs.
- Segment
Group stringId - Bypass
Type string - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- Config
Space string - Description string
- Description of the application.
- Double
Encrypt bool - Whether Double Encryption is enabled or disabled for the app.
- Enabled bool
- Health
Check stringType - Health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- Icmp
Access stringType - Ip
Anchored bool - Is
Cname boolEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- Is
Incomplete boolDr Config - Match
Style string - Name string
- Name of the application.
- Passive
Health boolEnabled - Segment
Group stringName - Select
Connector boolClose To App - Server
Groups List<Zscaler.Zpa. Inputs. Application Segment Browser Access Server Group> - List of the server group IDs.
- Tcp
Keep stringAlive - Tcp
Port List<Zscaler.Range Zpa. Inputs. Application Segment Browser Access Tcp Port Range> - tcp port range
- Tcp
Port List<string>Ranges - TCP port ranges used to access the app.
- Udp
Port List<Zscaler.Range Zpa. Inputs. Application Segment Browser Access Udp Port Range> - udp port range
- Udp
Port List<string>Ranges - UDP port ranges used to access the app.
- Use
In boolDr Mode
- Clientless
Apps []ApplicationSegment Browser Access Clientless App Args - Domain
Names []string - List of domains and IPs.
- Segment
Group stringId - Bypass
Type string - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- Config
Space string - Description string
- Description of the application.
- Double
Encrypt bool - Whether Double Encryption is enabled or disabled for the app.
- Enabled bool
- Health
Check stringType - Health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- Icmp
Access stringType - Ip
Anchored bool - Is
Cname boolEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- Is
Incomplete boolDr Config - Match
Style string - Name string
- Name of the application.
- Passive
Health boolEnabled - Segment
Group stringName - Select
Connector boolClose To App - Server
Groups []ApplicationSegment Browser Access Server Group Args - List of the server group IDs.
- Tcp
Keep stringAlive - Tcp
Port []ApplicationRange Segment Browser Access Tcp Port Range Args - tcp port range
- Tcp
Port []stringRanges - TCP port ranges used to access the app.
- Udp
Port []ApplicationRange Segment Browser Access Udp Port Range Args - udp port range
- Udp
Port []stringRanges - UDP port ranges used to access the app.
- Use
In boolDr Mode
- clientless
Apps List<ApplicationSegment Browser Access Clientless App> - domain
Names List<String> - List of domains and IPs.
- segment
Group StringId - bypass
Type String - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- config
Space String - description String
- Description of the application.
- double
Encrypt Boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled Boolean
- health
Check StringType - health
Reporting String - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access StringType - ip
Anchored Boolean - is
Cname BooleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete BooleanDr Config - match
Style String - name String
- Name of the application.
- passive
Health BooleanEnabled - segment
Group StringName - select
Connector BooleanClose To App - server
Groups List<ApplicationSegment Browser Access Server Group> - List of the server group IDs.
- tcp
Keep StringAlive - tcp
Port List<ApplicationRange Segment Browser Access Tcp Port Range> - tcp port range
- tcp
Port List<String>Ranges - TCP port ranges used to access the app.
- udp
Port List<ApplicationRange Segment Browser Access Udp Port Range> - udp port range
- udp
Port List<String>Ranges - UDP port ranges used to access the app.
- use
In BooleanDr Mode
- clientless
Apps ApplicationSegment Browser Access Clientless App[] - domain
Names string[] - List of domains and IPs.
- segment
Group stringId - bypass
Type string - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- config
Space string - description string
- Description of the application.
- double
Encrypt boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled boolean
- health
Check stringType - health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access stringType - ip
Anchored boolean - is
Cname booleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete booleanDr Config - match
Style string - name string
- Name of the application.
- passive
Health booleanEnabled - segment
Group stringName - select
Connector booleanClose To App - server
Groups ApplicationSegment Browser Access Server Group[] - List of the server group IDs.
- tcp
Keep stringAlive - tcp
Port ApplicationRange Segment Browser Access Tcp Port Range[] - tcp port range
- tcp
Port string[]Ranges - TCP port ranges used to access the app.
- udp
Port ApplicationRange Segment Browser Access Udp Port Range[] - udp port range
- udp
Port string[]Ranges - UDP port ranges used to access the app.
- use
In booleanDr Mode
- clientless_
apps Sequence[ApplicationSegment Browser Access Clientless App Args] - domain_
names Sequence[str] - List of domains and IPs.
- segment_
group_ strid - bypass_
type str - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- config_
space str - description str
- Description of the application.
- double_
encrypt bool - Whether Double Encryption is enabled or disabled for the app.
- enabled bool
- health_
check_ strtype - health_
reporting str - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp_
access_ strtype - ip_
anchored bool - is_
cname_ boolenabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is_
incomplete_ booldr_ config - match_
style str - name str
- Name of the application.
- passive_
health_ boolenabled - segment_
group_ strname - select_
connector_ boolclose_ to_ app - server_
groups Sequence[ApplicationSegment Browser Access Server Group Args] - List of the server group IDs.
- tcp_
keep_ stralive - tcp_
port_ Sequence[Applicationrange Segment Browser Access Tcp Port Range Args] - tcp port range
- tcp_
port_ Sequence[str]ranges - TCP port ranges used to access the app.
- udp_
port_ Sequence[Applicationrange Segment Browser Access Udp Port Range Args] - udp port range
- udp_
port_ Sequence[str]ranges - UDP port ranges used to access the app.
- use_
in_ booldr_ mode
- clientless
Apps List<Property Map> - domain
Names List<String> - List of domains and IPs.
- segment
Group StringId - bypass
Type String - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- config
Space String - description String
- Description of the application.
- double
Encrypt Boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled Boolean
- health
Check StringType - health
Reporting String - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access StringType - ip
Anchored Boolean - is
Cname BooleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete BooleanDr Config - match
Style String - name String
- Name of the application.
- passive
Health BooleanEnabled - segment
Group StringName - select
Connector BooleanClose To App - server
Groups List<Property Map> - List of the server group IDs.
- tcp
Keep StringAlive - tcp
Port List<Property Map>Range - tcp port range
- tcp
Port List<String>Ranges - TCP port ranges used to access the app.
- udp
Port List<Property Map>Range - udp port range
- udp
Port List<String>Ranges - UDP port ranges used to access the app.
- use
In BooleanDr Mode
Outputs
All input properties are implicitly available as output properties. Additionally, the ApplicationSegmentBrowserAccess 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 ApplicationSegmentBrowserAccess Resource
Get an existing ApplicationSegmentBrowserAccess 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?: ApplicationSegmentBrowserAccessState, opts?: CustomResourceOptions): ApplicationSegmentBrowserAccess
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
bypass_type: Optional[str] = None,
clientless_apps: Optional[Sequence[ApplicationSegmentBrowserAccessClientlessAppArgs]] = None,
config_space: Optional[str] = None,
description: Optional[str] = None,
domain_names: Optional[Sequence[str]] = None,
double_encrypt: Optional[bool] = None,
enabled: Optional[bool] = None,
health_check_type: Optional[str] = None,
health_reporting: Optional[str] = None,
icmp_access_type: Optional[str] = None,
ip_anchored: Optional[bool] = None,
is_cname_enabled: Optional[bool] = None,
is_incomplete_dr_config: Optional[bool] = None,
match_style: Optional[str] = None,
name: Optional[str] = None,
passive_health_enabled: Optional[bool] = None,
segment_group_id: Optional[str] = None,
segment_group_name: Optional[str] = None,
select_connector_close_to_app: Optional[bool] = None,
server_groups: Optional[Sequence[ApplicationSegmentBrowserAccessServerGroupArgs]] = None,
tcp_keep_alive: Optional[str] = None,
tcp_port_range: Optional[Sequence[ApplicationSegmentBrowserAccessTcpPortRangeArgs]] = None,
tcp_port_ranges: Optional[Sequence[str]] = None,
udp_port_range: Optional[Sequence[ApplicationSegmentBrowserAccessUdpPortRangeArgs]] = None,
udp_port_ranges: Optional[Sequence[str]] = None,
use_in_dr_mode: Optional[bool] = None) -> ApplicationSegmentBrowserAccess
func GetApplicationSegmentBrowserAccess(ctx *Context, name string, id IDInput, state *ApplicationSegmentBrowserAccessState, opts ...ResourceOption) (*ApplicationSegmentBrowserAccess, error)
public static ApplicationSegmentBrowserAccess Get(string name, Input<string> id, ApplicationSegmentBrowserAccessState? state, CustomResourceOptions? opts = null)
public static ApplicationSegmentBrowserAccess get(String name, Output<String> id, ApplicationSegmentBrowserAccessState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Bypass
Type string - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- Clientless
Apps List<Zscaler.Zpa. Inputs. Application Segment Browser Access Clientless App> - Config
Space string - Description string
- Description of the application.
- Domain
Names List<string> - List of domains and IPs.
- Double
Encrypt bool - Whether Double Encryption is enabled or disabled for the app.
- Enabled bool
- Health
Check stringType - Health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- Icmp
Access stringType - Ip
Anchored bool - Is
Cname boolEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- Is
Incomplete boolDr Config - Match
Style string - Name string
- Name of the application.
- Passive
Health boolEnabled - Segment
Group stringId - Segment
Group stringName - Select
Connector boolClose To App - Server
Groups List<Zscaler.Zpa. Inputs. Application Segment Browser Access Server Group> - List of the server group IDs.
- Tcp
Keep stringAlive - Tcp
Port List<Zscaler.Range Zpa. Inputs. Application Segment Browser Access Tcp Port Range> - tcp port range
- Tcp
Port List<string>Ranges - TCP port ranges used to access the app.
- Udp
Port List<Zscaler.Range Zpa. Inputs. Application Segment Browser Access Udp Port Range> - udp port range
- Udp
Port List<string>Ranges - UDP port ranges used to access the app.
- Use
In boolDr Mode
- Bypass
Type string - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- Clientless
Apps []ApplicationSegment Browser Access Clientless App Args - Config
Space string - Description string
- Description of the application.
- Domain
Names []string - List of domains and IPs.
- Double
Encrypt bool - Whether Double Encryption is enabled or disabled for the app.
- Enabled bool
- Health
Check stringType - Health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- Icmp
Access stringType - Ip
Anchored bool - Is
Cname boolEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- Is
Incomplete boolDr Config - Match
Style string - Name string
- Name of the application.
- Passive
Health boolEnabled - Segment
Group stringId - Segment
Group stringName - Select
Connector boolClose To App - Server
Groups []ApplicationSegment Browser Access Server Group Args - List of the server group IDs.
- Tcp
Keep stringAlive - Tcp
Port []ApplicationRange Segment Browser Access Tcp Port Range Args - tcp port range
- Tcp
Port []stringRanges - TCP port ranges used to access the app.
- Udp
Port []ApplicationRange Segment Browser Access Udp Port Range Args - udp port range
- Udp
Port []stringRanges - UDP port ranges used to access the app.
- Use
In boolDr Mode
- bypass
Type String - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- clientless
Apps List<ApplicationSegment Browser Access Clientless App> - config
Space String - description String
- Description of the application.
- domain
Names List<String> - List of domains and IPs.
- double
Encrypt Boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled Boolean
- health
Check StringType - health
Reporting String - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access StringType - ip
Anchored Boolean - is
Cname BooleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete BooleanDr Config - match
Style String - name String
- Name of the application.
- passive
Health BooleanEnabled - segment
Group StringId - segment
Group StringName - select
Connector BooleanClose To App - server
Groups List<ApplicationSegment Browser Access Server Group> - List of the server group IDs.
- tcp
Keep StringAlive - tcp
Port List<ApplicationRange Segment Browser Access Tcp Port Range> - tcp port range
- tcp
Port List<String>Ranges - TCP port ranges used to access the app.
- udp
Port List<ApplicationRange Segment Browser Access Udp Port Range> - udp port range
- udp
Port List<String>Ranges - UDP port ranges used to access the app.
- use
In BooleanDr Mode
- bypass
Type string - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- clientless
Apps ApplicationSegment Browser Access Clientless App[] - config
Space string - description string
- Description of the application.
- domain
Names string[] - List of domains and IPs.
- double
Encrypt boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled boolean
- health
Check stringType - health
Reporting string - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access stringType - ip
Anchored boolean - is
Cname booleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete booleanDr Config - match
Style string - name string
- Name of the application.
- passive
Health booleanEnabled - segment
Group stringId - segment
Group stringName - select
Connector booleanClose To App - server
Groups ApplicationSegment Browser Access Server Group[] - List of the server group IDs.
- tcp
Keep stringAlive - tcp
Port ApplicationRange Segment Browser Access Tcp Port Range[] - tcp port range
- tcp
Port string[]Ranges - TCP port ranges used to access the app.
- udp
Port ApplicationRange Segment Browser Access Udp Port Range[] - udp port range
- udp
Port string[]Ranges - UDP port ranges used to access the app.
- use
In booleanDr Mode
- bypass_
type str - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- clientless_
apps Sequence[ApplicationSegment Browser Access Clientless App Args] - config_
space str - description str
- Description of the application.
- domain_
names Sequence[str] - List of domains and IPs.
- double_
encrypt bool - Whether Double Encryption is enabled or disabled for the app.
- enabled bool
- health_
check_ strtype - health_
reporting str - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp_
access_ strtype - ip_
anchored bool - is_
cname_ boolenabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is_
incomplete_ booldr_ config - match_
style str - name str
- Name of the application.
- passive_
health_ boolenabled - segment_
group_ strid - segment_
group_ strname - select_
connector_ boolclose_ to_ app - server_
groups Sequence[ApplicationSegment Browser Access Server Group Args] - List of the server group IDs.
- tcp_
keep_ stralive - tcp_
port_ Sequence[Applicationrange Segment Browser Access Tcp Port Range Args] - tcp port range
- tcp_
port_ Sequence[str]ranges - TCP port ranges used to access the app.
- udp_
port_ Sequence[Applicationrange Segment Browser Access Udp Port Range Args] - udp port range
- udp_
port_ Sequence[str]ranges - UDP port ranges used to access the app.
- use_
in_ booldr_ mode
- bypass
Type String - Indicates whether users can bypass ZPA to access applications. Default: NEVER. Supported values: ALWAYS, NEVER, ON_NET. The value NEVER indicates the use of the client forwarding policy.
- clientless
Apps List<Property Map> - config
Space String - description String
- Description of the application.
- domain
Names List<String> - List of domains and IPs.
- double
Encrypt Boolean - Whether Double Encryption is enabled or disabled for the app.
- enabled Boolean
- health
Check StringType - health
Reporting String - Whether health reporting for the app is Continuous or On Access. Supported values: NONE, ON_ACCESS, CONTINUOUS.
- icmp
Access StringType - ip
Anchored Boolean - is
Cname BooleanEnabled - Indicates if the Zscaler Client Connector (formerly Zscaler App or Z App) receives CNAME DNS records from the connectors.
- is
Incomplete BooleanDr Config - match
Style String - name String
- Name of the application.
- passive
Health BooleanEnabled - segment
Group StringId - segment
Group StringName - select
Connector BooleanClose To App - server
Groups List<Property Map> - List of the server group IDs.
- tcp
Keep StringAlive - tcp
Port List<Property Map>Range - tcp port range
- tcp
Port List<String>Ranges - TCP port ranges used to access the app.
- udp
Port List<Property Map>Range - udp port range
- udp
Port List<String>Ranges - UDP port ranges used to access the app.
- use
In BooleanDr Mode
Supporting Types
ApplicationSegmentBrowserAccessClientlessApp, ApplicationSegmentBrowserAccessClientlessAppArgs
- Application
Port string - Port for the BA app.
- Application
Protocol string - Protocol for the BA app.
- Name string
- Allow
Options bool - If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
- Certificate
Id string - ID of the BA certificate.
- Cname string
- Description string
- Domain string
- Domain name or IP address of the BA app.
- Enabled bool
- bool
- Id string
- Local
Domain string - Path string
- Trust
Untrusted boolCert - Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
- Application
Port string - Port for the BA app.
- Application
Protocol string - Protocol for the BA app.
- Name string
- Allow
Options bool - If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
- Certificate
Id string - ID of the BA certificate.
- Cname string
- Description string
- Domain string
- Domain name or IP address of the BA app.
- Enabled bool
- bool
- Id string
- Local
Domain string - Path string
- Trust
Untrusted boolCert - Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
- application
Port String - Port for the BA app.
- application
Protocol String - Protocol for the BA app.
- name String
- allow
Options Boolean - If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
- certificate
Id String - ID of the BA certificate.
- cname String
- description String
- domain String
- Domain name or IP address of the BA app.
- enabled Boolean
- Boolean
- id String
- local
Domain String - path String
- trust
Untrusted BooleanCert - Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
- application
Port string - Port for the BA app.
- application
Protocol string - Protocol for the BA app.
- name string
- allow
Options boolean - If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
- certificate
Id string - ID of the BA certificate.
- cname string
- description string
- domain string
- Domain name or IP address of the BA app.
- enabled boolean
- boolean
- id string
- local
Domain string - path string
- trust
Untrusted booleanCert - Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
- application_
port str - Port for the BA app.
- application_
protocol str - Protocol for the BA app.
- name str
- allow_
options bool - If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
- certificate_
id str - ID of the BA certificate.
- cname str
- description str
- domain str
- Domain name or IP address of the BA app.
- enabled bool
- bool
- id str
- local_
domain str - path str
- trust_
untrusted_ boolcert - Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
- application
Port String - Port for the BA app.
- application
Protocol String - Protocol for the BA app.
- name String
- allow
Options Boolean - If you want ZPA to forward unauthenticated HTTP preflight OPTIONS requests from the browser to the app.
- certificate
Id String - ID of the BA certificate.
- cname String
- description String
- domain String
- Domain name or IP address of the BA app.
- enabled Boolean
- Boolean
- id String
- local
Domain String - path String
- trust
Untrusted BooleanCert - Indicates whether Use Untrusted Certificates is enabled or disabled for a BA app.
ApplicationSegmentBrowserAccessServerGroup, ApplicationSegmentBrowserAccessServerGroupArgs
- Ids List<string>
- Ids []string
- ids List<String>
- ids string[]
- ids Sequence[str]
- ids List<String>
ApplicationSegmentBrowserAccessTcpPortRange, ApplicationSegmentBrowserAccessTcpPortRangeArgs
ApplicationSegmentBrowserAccessUdpPortRange, ApplicationSegmentBrowserAccessUdpPortRangeArgs
Import
Zscaler offers a dedicated tool called Zscaler-Terraformer to allow the automated import of ZPA configurations into Terraform-compliant HashiCorp Configuration Language.
Visit
zpa_application_segment_browser_access Application Segment Browser Access can be imported by using <BROWSER ACCESS ID
> or <<BROWSER ACCESS NAME>
as the import ID.
For example:
$ pulumi import zpa:index/applicationSegmentBrowserAccess:ApplicationSegmentBrowserAccess example <browser_access_id>.
or
$ pulumi import zpa:index/applicationSegmentBrowserAccess:ApplicationSegmentBrowserAccess example <browser_access_name>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- zpa zscaler/pulumi-zpa
- License
- MIT
- Notes
- This Pulumi package is based on the
zpa
Terraform Provider.