UNPKG

@bdzscaler/pulumi-zia

Version:

A Pulumi package for creating and managing zia cloud resources.

44 lines 2.83 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getForwardingControlRuleOutput = exports.getForwardingControlRule = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("./utilities"); /** * * [Official documentation](https://help.zscaler.com/zia/configuring-forwarding-policy) * * [API documentation](https://help.zscaler.com/zia/forwarding-control-policy#/forwardingRules-get) * * Use the **zia_forwarding_control_rule** data source to get information about a forwarding control rule which is used to forward selective Zscaler traffic to specific destinations based on your needs.For example, if you want to forward specific web traffic to a third-party proxy service or if you want to forward source IP anchored application traffic to a specific Zscaler Private Access (ZPA) App Connector or internal application traffic through ZIA threat and data protection engines, use forwarding control by configuring appropriate rules. * * ## Example Usage */ function getForwardingControlRule(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("zia:index/getForwardingControlRule:getForwardingControlRule", { "id": args.id, "name": args.name, "type": args.type, }, opts); } exports.getForwardingControlRule = getForwardingControlRule; /** * * [Official documentation](https://help.zscaler.com/zia/configuring-forwarding-policy) * * [API documentation](https://help.zscaler.com/zia/forwarding-control-policy#/forwardingRules-get) * * Use the **zia_forwarding_control_rule** data source to get information about a forwarding control rule which is used to forward selective Zscaler traffic to specific destinations based on your needs.For example, if you want to forward specific web traffic to a third-party proxy service or if you want to forward source IP anchored application traffic to a specific Zscaler Private Access (ZPA) App Connector or internal application traffic through ZIA threat and data protection engines, use forwarding control by configuring appropriate rules. * * ## Example Usage */ function getForwardingControlRuleOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("zia:index/getForwardingControlRule:getForwardingControlRule", { "id": args.id, "name": args.name, "type": args.type, }, opts); } exports.getForwardingControlRuleOutput = getForwardingControlRuleOutput; //# sourceMappingURL=getForwardingControlRule.js.map