Argo
Cloudflare Argo controls the routing to your origin and tiered caching options to speed up your website browsing experience.
Example Usage
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
class MyStack : Stack
{
public MyStack()
{
var example = new Cloudflare.Argo("example", new Cloudflare.ArgoArgs
{
SmartRouting = "on",
TieredCaching = "on",
ZoneId = "d41d8cd98f00b204e9800998ecf8427e",
});
}
}
Coming soon!
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.Argo("example",
smart_routing="on",
tiered_caching="on",
zone_id="d41d8cd98f00b204e9800998ecf8427e")import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const example = new cloudflare.Argo("example", {
smartRouting: "on",
tieredCaching: "on",
zoneId: "d41d8cd98f00b204e9800998ecf8427e",
});Create a Argo Resource
new Argo(name: string, args: ArgoArgs, opts?: CustomResourceOptions);def Argo(resource_name, opts=None, smart_routing=None, tiered_caching=None, zone_id=None, __props__=None);public Argo(string name, ArgoArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args ArgoArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ArgoArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ArgoArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
Argo Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The Argo resource accepts the following input properties:
- Zone
Id string The DNS zone ID that you wish to manage Argo on.
- Smart
Routing string Whether smart routing is enabled. Valid values:
onoroff.- Tiered
Caching string Whether tiered caching is enabled. Valid values:
onoroff.
- Zone
Id string The DNS zone ID that you wish to manage Argo on.
- Smart
Routing string Whether smart routing is enabled. Valid values:
onoroff.- Tiered
Caching string Whether tiered caching is enabled. Valid values:
onoroff.
- zone
Id string The DNS zone ID that you wish to manage Argo on.
- smart
Routing string Whether smart routing is enabled. Valid values:
onoroff.- tiered
Caching string Whether tiered caching is enabled. Valid values:
onoroff.
- zone_
id str The DNS zone ID that you wish to manage Argo on.
- smart_
routing str Whether smart routing is enabled. Valid values:
onoroff.- tiered_
caching str Whether tiered caching is enabled. Valid values:
onoroff.
Outputs
All input properties are implicitly available as output properties. Additionally, the Argo resource produces the following output properties:
Look up an Existing Argo Resource
Get an existing Argo 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?: ArgoState, opts?: CustomResourceOptions): Argostatic get(resource_name, id, opts=None, smart_routing=None, tiered_caching=None, zone_id=None, __props__=None);public static Argo Get(string name, Input<string> id, ArgoState? state, CustomResourceOptions? opts = null)- 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.
The following state arguments are supported:
- Smart
Routing string Whether smart routing is enabled. Valid values:
onoroff.- Tiered
Caching string Whether tiered caching is enabled. Valid values:
onoroff.- Zone
Id string The DNS zone ID that you wish to manage Argo on.
- Smart
Routing string Whether smart routing is enabled. Valid values:
onoroff.- Tiered
Caching string Whether tiered caching is enabled. Valid values:
onoroff.- Zone
Id string The DNS zone ID that you wish to manage Argo on.
- smart
Routing string Whether smart routing is enabled. Valid values:
onoroff.- tiered
Caching string Whether tiered caching is enabled. Valid values:
onoroff.- zone
Id string The DNS zone ID that you wish to manage Argo on.
- smart_
routing str Whether smart routing is enabled. Valid values:
onoroff.- tiered_
caching str Whether tiered caching is enabled. Valid values:
onoroff.- zone_
id str The DNS zone ID that you wish to manage Argo on.
Package Details
- Repository
- https://github.com/pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
cloudflareTerraform Provider.