1. Packages
  2. Cloudflare
  3. API Docs
  4. CustomPages
Cloudflare v5.26.0 published on Wednesday, Apr 17, 2024 by Pulumi

cloudflare.CustomPages

Explore with Pulumi AI

cloudflare logo
Cloudflare v5.26.0 published on Wednesday, Apr 17, 2024 by Pulumi

    Provides a resource which manages Cloudflare custom error pages.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const example = new cloudflare.CustomPages("example", {
        state: "customized",
        type: "basic_challenge",
        url: "https://example.com/challenge.html",
        zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example = cloudflare.CustomPages("example",
        state="customized",
        type="basic_challenge",
        url="https://example.com/challenge.html",
        zone_id="0da42c8d2132a9ddaf714f9e7c920711")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-cloudflare/sdk/v5/go/cloudflare"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudflare.NewCustomPages(ctx, "example", &cloudflare.CustomPagesArgs{
    			State:  pulumi.String("customized"),
    			Type:   pulumi.String("basic_challenge"),
    			Url:    pulumi.String("https://example.com/challenge.html"),
    			ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Cloudflare = Pulumi.Cloudflare;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Cloudflare.CustomPages("example", new()
        {
            State = "customized",
            Type = "basic_challenge",
            Url = "https://example.com/challenge.html",
            ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cloudflare.CustomPages;
    import com.pulumi.cloudflare.CustomPagesArgs;
    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) {
            var example = new CustomPages("example", CustomPagesArgs.builder()        
                .state("customized")
                .type("basic_challenge")
                .url("https://example.com/challenge.html")
                .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
                .build());
    
        }
    }
    
    resources:
      example:
        type: cloudflare:CustomPages
        properties:
          state: customized
          type: basic_challenge
          url: https://example.com/challenge.html
          zoneId: 0da42c8d2132a9ddaf714f9e7c920711
    

    Create CustomPages Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CustomPages(name: string, args: CustomPagesArgs, opts?: CustomResourceOptions);
    @overload
    def CustomPages(resource_name: str,
                    args: CustomPagesArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def CustomPages(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    type: Optional[str] = None,
                    url: Optional[str] = None,
                    account_id: Optional[str] = None,
                    state: Optional[str] = None,
                    zone_id: Optional[str] = None)
    func NewCustomPages(ctx *Context, name string, args CustomPagesArgs, opts ...ResourceOption) (*CustomPages, error)
    public CustomPages(string name, CustomPagesArgs args, CustomResourceOptions? opts = null)
    public CustomPages(String name, CustomPagesArgs args)
    public CustomPages(String name, CustomPagesArgs args, CustomResourceOptions options)
    
    type: cloudflare:CustomPages
    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 CustomPagesArgs
    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 CustomPagesArgs
    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 CustomPagesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CustomPagesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CustomPagesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var customPagesResource = new Cloudflare.CustomPages("customPagesResource", new()
    {
        Type = "string",
        Url = "string",
        AccountId = "string",
        State = "string",
        ZoneId = "string",
    });
    
    example, err := cloudflare.NewCustomPages(ctx, "customPagesResource", &cloudflare.CustomPagesArgs{
    	Type:      pulumi.String("string"),
    	Url:       pulumi.String("string"),
    	AccountId: pulumi.String("string"),
    	State:     pulumi.String("string"),
    	ZoneId:    pulumi.String("string"),
    })
    
    var customPagesResource = new CustomPages("customPagesResource", CustomPagesArgs.builder()        
        .type("string")
        .url("string")
        .accountId("string")
        .state("string")
        .zoneId("string")
        .build());
    
    custom_pages_resource = cloudflare.CustomPages("customPagesResource",
        type="string",
        url="string",
        account_id="string",
        state="string",
        zone_id="string")
    
    const customPagesResource = new cloudflare.CustomPages("customPagesResource", {
        type: "string",
        url: "string",
        accountId: "string",
        state: "string",
        zoneId: "string",
    });
    
    type: cloudflare:CustomPages
    properties:
        accountId: string
        state: string
        type: string
        url: string
        zoneId: string
    

    CustomPages 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 CustomPages resource accepts the following input properties:

    Type string
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    Url string
    URL of where the custom page source is located.
    AccountId string
    The account identifier to target for the resource. Conflicts with zone_id.
    State string
    Managed state of the custom page. Available values: default, customized.
    ZoneId string
    The zone identifier to target for the resource. Conflicts with account_id.
    Type string
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    Url string
    URL of where the custom page source is located.
    AccountId string
    The account identifier to target for the resource. Conflicts with zone_id.
    State string
    Managed state of the custom page. Available values: default, customized.
    ZoneId string
    The zone identifier to target for the resource. Conflicts with account_id.
    type String
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    url String
    URL of where the custom page source is located.
    accountId String
    The account identifier to target for the resource. Conflicts with zone_id.
    state String
    Managed state of the custom page. Available values: default, customized.
    zoneId String
    The zone identifier to target for the resource. Conflicts with account_id.
    type string
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    url string
    URL of where the custom page source is located.
    accountId string
    The account identifier to target for the resource. Conflicts with zone_id.
    state string
    Managed state of the custom page. Available values: default, customized.
    zoneId string
    The zone identifier to target for the resource. Conflicts with account_id.
    type str
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    url str
    URL of where the custom page source is located.
    account_id str
    The account identifier to target for the resource. Conflicts with zone_id.
    state str
    Managed state of the custom page. Available values: default, customized.
    zone_id str
    The zone identifier to target for the resource. Conflicts with account_id.
    type String
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    url String
    URL of where the custom page source is located.
    accountId String
    The account identifier to target for the resource. Conflicts with zone_id.
    state String
    Managed state of the custom page. Available values: default, customized.
    zoneId String
    The zone identifier to target for the resource. Conflicts with account_id.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CustomPages 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 CustomPages Resource

    Get an existing CustomPages 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?: CustomPagesState, opts?: CustomResourceOptions): CustomPages
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_id: Optional[str] = None,
            state: Optional[str] = None,
            type: Optional[str] = None,
            url: Optional[str] = None,
            zone_id: Optional[str] = None) -> CustomPages
    func GetCustomPages(ctx *Context, name string, id IDInput, state *CustomPagesState, opts ...ResourceOption) (*CustomPages, error)
    public static CustomPages Get(string name, Input<string> id, CustomPagesState? state, CustomResourceOptions? opts = null)
    public static CustomPages get(String name, Output<String> id, CustomPagesState 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.
    The following state arguments are supported:
    AccountId string
    The account identifier to target for the resource. Conflicts with zone_id.
    State string
    Managed state of the custom page. Available values: default, customized.
    Type string
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    Url string
    URL of where the custom page source is located.
    ZoneId string
    The zone identifier to target for the resource. Conflicts with account_id.
    AccountId string
    The account identifier to target for the resource. Conflicts with zone_id.
    State string
    Managed state of the custom page. Available values: default, customized.
    Type string
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    Url string
    URL of where the custom page source is located.
    ZoneId string
    The zone identifier to target for the resource. Conflicts with account_id.
    accountId String
    The account identifier to target for the resource. Conflicts with zone_id.
    state String
    Managed state of the custom page. Available values: default, customized.
    type String
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    url String
    URL of where the custom page source is located.
    zoneId String
    The zone identifier to target for the resource. Conflicts with account_id.
    accountId string
    The account identifier to target for the resource. Conflicts with zone_id.
    state string
    Managed state of the custom page. Available values: default, customized.
    type string
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    url string
    URL of where the custom page source is located.
    zoneId string
    The zone identifier to target for the resource. Conflicts with account_id.
    account_id str
    The account identifier to target for the resource. Conflicts with zone_id.
    state str
    Managed state of the custom page. Available values: default, customized.
    type str
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    url str
    URL of where the custom page source is located.
    zone_id str
    The zone identifier to target for the resource. Conflicts with account_id.
    accountId String
    The account identifier to target for the resource. Conflicts with zone_id.
    state String
    Managed state of the custom page. Available values: default, customized.
    type String
    The type of custom page you wish to update. Available values: basic_challenge, waf_challenge, waf_block, ratelimit_block, country_challenge, ip_block, under_attack, 500_errors, 1000_errors, managed_challenge.
    url String
    URL of where the custom page source is located.
    zoneId String
    The zone identifier to target for the resource. Conflicts with account_id.

    Import

    $ pulumi import cloudflare:index/customPages:CustomPages example <resource_level>/<resource_id>/<custom_page_type>
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Cloudflare pulumi/pulumi-cloudflare
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cloudflare Terraform Provider.
    cloudflare logo
    Cloudflare v5.26.0 published on Wednesday, Apr 17, 2024 by Pulumi