CustomPagesArgs

data class CustomPagesArgs(val accountId: Output<String>? = null, val state: Output<String>? = null, val type: Output<String>? = null, val url: Output<String>? = null, val zoneId: Output<String>? = null) : ConvertibleToJava<CustomPagesArgs>

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", {
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
type: "basic_challenge",
url: "https://example.com/challenge.html",
state: "customized",
});
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.CustomPages("example",
zone_id="0da42c8d2132a9ddaf714f9e7c920711",
type="basic_challenge",
url="https://example.com/challenge.html",
state="customized")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var example = new Cloudflare.CustomPages("example", new()
{
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
Type = "basic_challenge",
Url = "https://example.com/challenge.html",
State = "customized",
});
});
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{
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
Type: pulumi.String("basic_challenge"),
Url: pulumi.String("https://example.com/challenge.html"),
State: pulumi.String("customized"),
})
if err != nil {
return err
}
return nil
})
}
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()
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.type("basic_challenge")
.url("https://example.com/challenge.html")
.state("customized")
.build());
}
}
resources:
example:
type: cloudflare:CustomPages
properties:
zoneId: 0da42c8d2132a9ddaf714f9e7c920711
type: basic_challenge
url: https://example.com/challenge.html
state: customized

Import

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

Constructors

Link copied to clipboard
constructor(accountId: Output<String>? = null, state: Output<String>? = null, type: Output<String>? = null, url: Output<String>? = null, zoneId: Output<String>? = null)

Properties

Link copied to clipboard
val accountId: Output<String>? = null

The account identifier to target for the resource. Conflicts with zone_id.

Link copied to clipboard
val state: Output<String>? = null

Managed state of the custom page. Available values: default, customized.

Link copied to clipboard
val type: Output<String>? = null

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.

Link copied to clipboard
val url: Output<String>? = null

URL of where the custom page source is located.

Link copied to clipboard
val zoneId: Output<String>? = null

The zone identifier to target for the resource. Conflicts with account_id.

Functions

Link copied to clipboard
open override fun toJava(): CustomPagesArgs