1. Packages
  2. Cloudflare Provider
  3. API Docs
  4. CustomHostnameFallbackOrigin
Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi

cloudflare.CustomHostnameFallbackOrigin

Explore with Pulumi AI

cloudflare logo
Cloudflare v6.1.2 published on Monday, Apr 28, 2025 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const exampleCustomHostnameFallbackOrigin = new cloudflare.CustomHostnameFallbackOrigin("example_custom_hostname_fallback_origin", {
        zoneId: "023e105f4ecef8ad9ca31a8372d0c353",
        origin: "fallback.example.com",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example_custom_hostname_fallback_origin = cloudflare.CustomHostnameFallbackOrigin("example_custom_hostname_fallback_origin",
        zone_id="023e105f4ecef8ad9ca31a8372d0c353",
        origin="fallback.example.com")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-cloudflare/sdk/v6/go/cloudflare"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudflare.NewCustomHostnameFallbackOrigin(ctx, "example_custom_hostname_fallback_origin", &cloudflare.CustomHostnameFallbackOriginArgs{
    			ZoneId: pulumi.String("023e105f4ecef8ad9ca31a8372d0c353"),
    			Origin: pulumi.String("fallback.example.com"),
    		})
    		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 exampleCustomHostnameFallbackOrigin = new Cloudflare.CustomHostnameFallbackOrigin("example_custom_hostname_fallback_origin", new()
        {
            ZoneId = "023e105f4ecef8ad9ca31a8372d0c353",
            Origin = "fallback.example.com",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.cloudflare.CustomHostnameFallbackOrigin;
    import com.pulumi.cloudflare.CustomHostnameFallbackOriginArgs;
    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 exampleCustomHostnameFallbackOrigin = new CustomHostnameFallbackOrigin("exampleCustomHostnameFallbackOrigin", CustomHostnameFallbackOriginArgs.builder()
                .zoneId("023e105f4ecef8ad9ca31a8372d0c353")
                .origin("fallback.example.com")
                .build());
    
        }
    }
    
    resources:
      exampleCustomHostnameFallbackOrigin:
        type: cloudflare:CustomHostnameFallbackOrigin
        name: example_custom_hostname_fallback_origin
        properties:
          zoneId: 023e105f4ecef8ad9ca31a8372d0c353
          origin: fallback.example.com
    

    Create CustomHostnameFallbackOrigin Resource

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

    Constructor syntax

    new CustomHostnameFallbackOrigin(name: string, args: CustomHostnameFallbackOriginArgs, opts?: CustomResourceOptions);
    @overload
    def CustomHostnameFallbackOrigin(resource_name: str,
                                     args: CustomHostnameFallbackOriginArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def CustomHostnameFallbackOrigin(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     origin: Optional[str] = None,
                                     zone_id: Optional[str] = None)
    func NewCustomHostnameFallbackOrigin(ctx *Context, name string, args CustomHostnameFallbackOriginArgs, opts ...ResourceOption) (*CustomHostnameFallbackOrigin, error)
    public CustomHostnameFallbackOrigin(string name, CustomHostnameFallbackOriginArgs args, CustomResourceOptions? opts = null)
    public CustomHostnameFallbackOrigin(String name, CustomHostnameFallbackOriginArgs args)
    public CustomHostnameFallbackOrigin(String name, CustomHostnameFallbackOriginArgs args, CustomResourceOptions options)
    
    type: cloudflare:CustomHostnameFallbackOrigin
    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 CustomHostnameFallbackOriginArgs
    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 CustomHostnameFallbackOriginArgs
    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 CustomHostnameFallbackOriginArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CustomHostnameFallbackOriginArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CustomHostnameFallbackOriginArgs
    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 customHostnameFallbackOriginResource = new Cloudflare.CustomHostnameFallbackOrigin("customHostnameFallbackOriginResource", new()
    {
        Origin = "string",
        ZoneId = "string",
    });
    
    example, err := cloudflare.NewCustomHostnameFallbackOrigin(ctx, "customHostnameFallbackOriginResource", &cloudflare.CustomHostnameFallbackOriginArgs{
    	Origin: pulumi.String("string"),
    	ZoneId: pulumi.String("string"),
    })
    
    var customHostnameFallbackOriginResource = new CustomHostnameFallbackOrigin("customHostnameFallbackOriginResource", CustomHostnameFallbackOriginArgs.builder()
        .origin("string")
        .zoneId("string")
        .build());
    
    custom_hostname_fallback_origin_resource = cloudflare.CustomHostnameFallbackOrigin("customHostnameFallbackOriginResource",
        origin="string",
        zone_id="string")
    
    const customHostnameFallbackOriginResource = new cloudflare.CustomHostnameFallbackOrigin("customHostnameFallbackOriginResource", {
        origin: "string",
        zoneId: "string",
    });
    
    type: cloudflare:CustomHostnameFallbackOrigin
    properties:
        origin: string
        zoneId: string
    

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

    Origin string
    Your origin hostname that requests to your custom hostnames will be sent to.
    ZoneId string
    Identifier
    Origin string
    Your origin hostname that requests to your custom hostnames will be sent to.
    ZoneId string
    Identifier
    origin String
    Your origin hostname that requests to your custom hostnames will be sent to.
    zoneId String
    Identifier
    origin string
    Your origin hostname that requests to your custom hostnames will be sent to.
    zoneId string
    Identifier
    origin str
    Your origin hostname that requests to your custom hostnames will be sent to.
    zone_id str
    Identifier
    origin String
    Your origin hostname that requests to your custom hostnames will be sent to.
    zoneId String
    Identifier

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CustomHostnameFallbackOrigin resource produces the following output properties:

    CreatedAt string
    This is the time the fallback origin was created.
    Errors List<string>
    These are errors that were encountered while trying to activate a fallback origin.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    UpdatedAt string
    This is the time the fallback origin was updated.
    CreatedAt string
    This is the time the fallback origin was created.
    Errors []string
    These are errors that were encountered while trying to activate a fallback origin.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    UpdatedAt string
    This is the time the fallback origin was updated.
    createdAt String
    This is the time the fallback origin was created.
    errors List<String>
    These are errors that were encountered while trying to activate a fallback origin.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    updatedAt String
    This is the time the fallback origin was updated.
    createdAt string
    This is the time the fallback origin was created.
    errors string[]
    These are errors that were encountered while trying to activate a fallback origin.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    updatedAt string
    This is the time the fallback origin was updated.
    created_at str
    This is the time the fallback origin was created.
    errors Sequence[str]
    These are errors that were encountered while trying to activate a fallback origin.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    updated_at str
    This is the time the fallback origin was updated.
    createdAt String
    This is the time the fallback origin was created.
    errors List<String>
    These are errors that were encountered while trying to activate a fallback origin.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    updatedAt String
    This is the time the fallback origin was updated.

    Look up Existing CustomHostnameFallbackOrigin Resource

    Get an existing CustomHostnameFallbackOrigin 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?: CustomHostnameFallbackOriginState, opts?: CustomResourceOptions): CustomHostnameFallbackOrigin
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            errors: Optional[Sequence[str]] = None,
            origin: Optional[str] = None,
            status: Optional[str] = None,
            updated_at: Optional[str] = None,
            zone_id: Optional[str] = None) -> CustomHostnameFallbackOrigin
    func GetCustomHostnameFallbackOrigin(ctx *Context, name string, id IDInput, state *CustomHostnameFallbackOriginState, opts ...ResourceOption) (*CustomHostnameFallbackOrigin, error)
    public static CustomHostnameFallbackOrigin Get(string name, Input<string> id, CustomHostnameFallbackOriginState? state, CustomResourceOptions? opts = null)
    public static CustomHostnameFallbackOrigin get(String name, Output<String> id, CustomHostnameFallbackOriginState state, CustomResourceOptions options)
    resources:  _:    type: cloudflare:CustomHostnameFallbackOrigin    get:      id: ${id}
    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:
    CreatedAt string
    This is the time the fallback origin was created.
    Errors List<string>
    These are errors that were encountered while trying to activate a fallback origin.
    Origin string
    Your origin hostname that requests to your custom hostnames will be sent to.
    Status string
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    UpdatedAt string
    This is the time the fallback origin was updated.
    ZoneId string
    Identifier
    CreatedAt string
    This is the time the fallback origin was created.
    Errors []string
    These are errors that were encountered while trying to activate a fallback origin.
    Origin string
    Your origin hostname that requests to your custom hostnames will be sent to.
    Status string
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    UpdatedAt string
    This is the time the fallback origin was updated.
    ZoneId string
    Identifier
    createdAt String
    This is the time the fallback origin was created.
    errors List<String>
    These are errors that were encountered while trying to activate a fallback origin.
    origin String
    Your origin hostname that requests to your custom hostnames will be sent to.
    status String
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    updatedAt String
    This is the time the fallback origin was updated.
    zoneId String
    Identifier
    createdAt string
    This is the time the fallback origin was created.
    errors string[]
    These are errors that were encountered while trying to activate a fallback origin.
    origin string
    Your origin hostname that requests to your custom hostnames will be sent to.
    status string
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    updatedAt string
    This is the time the fallback origin was updated.
    zoneId string
    Identifier
    created_at str
    This is the time the fallback origin was created.
    errors Sequence[str]
    These are errors that were encountered while trying to activate a fallback origin.
    origin str
    Your origin hostname that requests to your custom hostnames will be sent to.
    status str
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    updated_at str
    This is the time the fallback origin was updated.
    zone_id str
    Identifier
    createdAt String
    This is the time the fallback origin was created.
    errors List<String>
    These are errors that were encountered while trying to activate a fallback origin.
    origin String
    Your origin hostname that requests to your custom hostnames will be sent to.
    status String
    Status of the fallback origin's activation. Available values: "initializing", "pendingdeployment", "pendingdeletion", "active", "deploymenttimedout", "deletiontimedout".
    updatedAt String
    This is the time the fallback origin was updated.
    zoneId String
    Identifier

    Import

    $ pulumi import cloudflare:index/customHostnameFallbackOrigin:CustomHostnameFallbackOrigin example '<zone_id>'
    

    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 v6.1.2 published on Monday, Apr 28, 2025 by Pulumi