published on Friday, Mar 13, 2026 by Zscaler
published on Friday, Mar 13, 2026 by Zscaler
The zia_auth_settings_urls resource manages the URLs that are exempted from user authentication in the Zscaler Internet Access (ZIA) cloud service. This singleton resource allows you to define a list of URLs that bypass the ZIA authentication process.
For more information, see the ZIA User Authentication documentation.
Example Usage
Basic Authentication Settings URLs
Example coming soon!
Example coming soon!
Example coming soon!
import * as zia from "@bdzscaler/pulumi-zia";
const example = new zia.AuthSettingsUrls("example", {
urls: [
".example.com",
".internal.corp.com",
],
});
import zscaler_pulumi_zia as zia
example = zia.AuthSettingsUrls("example",
urls=[
".example.com",
".internal.corp.com",
],
)
resources:
example:
type: zia:AuthSettingsUrls
properties:
urls:
- .example.com
- .internal.corp.com
Create AuthSettingsUrls Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AuthSettingsUrls(name: string, args?: AuthSettingsUrlsArgs, opts?: CustomResourceOptions);@overload
def AuthSettingsUrls(resource_name: str,
args: Optional[AuthSettingsUrlsArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def AuthSettingsUrls(resource_name: str,
opts: Optional[ResourceOptions] = None,
urls: Optional[Sequence[str]] = None)func NewAuthSettingsUrls(ctx *Context, name string, args *AuthSettingsUrlsArgs, opts ...ResourceOption) (*AuthSettingsUrls, error)public AuthSettingsUrls(string name, AuthSettingsUrlsArgs? args = null, CustomResourceOptions? opts = null)
public AuthSettingsUrls(String name, AuthSettingsUrlsArgs args)
public AuthSettingsUrls(String name, AuthSettingsUrlsArgs args, CustomResourceOptions options)
type: zia:AuthSettingsUrls
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 AuthSettingsUrlsArgs
- 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 AuthSettingsUrlsArgs
- 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 AuthSettingsUrlsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AuthSettingsUrlsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AuthSettingsUrlsArgs
- 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 authSettingsUrlsResource = new Zia.AuthSettingsUrls("authSettingsUrlsResource", new()
{
Urls = new[]
{
"string",
},
});
example, err := zia.NewAuthSettingsUrls(ctx, "authSettingsUrlsResource", &zia.AuthSettingsUrlsArgs{
Urls: pulumi.StringArray{
pulumi.String("string"),
},
})
var authSettingsUrlsResource = new AuthSettingsUrls("authSettingsUrlsResource", AuthSettingsUrlsArgs.builder()
.urls("string")
.build());
auth_settings_urls_resource = zia.AuthSettingsUrls("authSettingsUrlsResource", urls=["string"])
const authSettingsUrlsResource = new zia.AuthSettingsUrls("authSettingsUrlsResource", {urls: ["string"]});
type: zia:AuthSettingsUrls
properties:
urls:
- string
AuthSettingsUrls 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 AuthSettingsUrls resource accepts the following input properties:
- Urls List<string>
- List of URLs that are exempted from user authentication.
- Urls []string
- List of URLs that are exempted from user authentication.
- urls List<String>
- List of URLs that are exempted from user authentication.
- urls string[]
- List of URLs that are exempted from user authentication.
- urls Sequence[str]
- List of URLs that are exempted from user authentication.
- urls List<String>
- List of URLs that are exempted from user authentication.
Outputs
All input properties are implicitly available as output properties. Additionally, the AuthSettingsUrls resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Id string - The internal resource identifier for the authentication settings URLs.
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Id string - The internal resource identifier for the authentication settings URLs.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Id String - The internal resource identifier for the authentication settings URLs.
- id string
- The provider-assigned unique ID for this managed resource.
- resource
Id string - The internal resource identifier for the authentication settings URLs.
- id str
- The provider-assigned unique ID for this managed resource.
- resource_
id str - The internal resource identifier for the authentication settings URLs.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Id String - The internal resource identifier for the authentication settings URLs.
Import
This is a singleton resource and does not support traditional import. It is automatically managed by the provider.
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
