1. Packages
  2. Cloudflare
  3. API Docs
  4. CustomHostnameFallbackOrigin
Cloudflare v5.23.0 published on Monday, Mar 25, 2024 by Pulumi

cloudflare.CustomHostnameFallbackOrigin

Explore with Pulumi AI

cloudflare logo
Cloudflare v5.23.0 published on Monday, Mar 25, 2024 by Pulumi

    Provides a Cloudflare custom hostname fallback origin resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as cloudflare from "@pulumi/cloudflare";
    
    const example = new cloudflare.CustomHostnameFallbackOrigin("example", {
        origin: "fallback.example.com",
        zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
    });
    
    import pulumi
    import pulumi_cloudflare as cloudflare
    
    example = cloudflare.CustomHostnameFallbackOrigin("example",
        origin="fallback.example.com",
        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.NewCustomHostnameFallbackOrigin(ctx, "example", &cloudflare.CustomHostnameFallbackOriginArgs{
    			Origin: pulumi.String("fallback.example.com"),
    			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.CustomHostnameFallbackOrigin("example", new()
        {
            Origin = "fallback.example.com",
            ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
        });
    
    });
    
    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 example = new CustomHostnameFallbackOrigin("example", CustomHostnameFallbackOriginArgs.builder()        
                .origin("fallback.example.com")
                .zoneId("0da42c8d2132a9ddaf714f9e7c920711")
                .build());
    
        }
    }
    
    resources:
      example:
        type: cloudflare:CustomHostnameFallbackOrigin
        properties:
          origin: fallback.example.com
          zoneId: 0da42c8d2132a9ddaf714f9e7c920711
    

    Create CustomHostnameFallbackOrigin Resource

    new CustomHostnameFallbackOrigin(name: string, args: CustomHostnameFallbackOriginArgs, opts?: CustomResourceOptions);
    @overload
    def CustomHostnameFallbackOrigin(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     origin: Optional[str] = None,
                                     zone_id: Optional[str] = None)
    @overload
    def CustomHostnameFallbackOrigin(resource_name: str,
                                     args: CustomHostnameFallbackOriginArgs,
                                     opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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

    The CustomHostnameFallbackOrigin resource accepts the following input properties:

    Origin string
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    ZoneId string
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
    Origin string
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    ZoneId string
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
    origin String
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    zoneId String
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
    origin string
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    zoneId string
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
    origin str
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    zone_id str
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
    origin String
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    zoneId String
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Status of the fallback origin's activation.
    Id string
    The provider-assigned unique ID for this managed resource.
    Status string
    Status of the fallback origin's activation.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Status of the fallback origin's activation.
    id string
    The provider-assigned unique ID for this managed resource.
    status string
    Status of the fallback origin's activation.
    id str
    The provider-assigned unique ID for this managed resource.
    status str
    Status of the fallback origin's activation.
    id String
    The provider-assigned unique ID for this managed resource.
    status String
    Status of the fallback origin's activation.

    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,
            origin: Optional[str] = None,
            status: 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)
    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:
    Origin string
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    Status string
    Status of the fallback origin's activation.
    ZoneId string
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
    Origin string
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    Status string
    Status of the fallback origin's activation.
    ZoneId string
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
    origin String
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    status String
    Status of the fallback origin's activation.
    zoneId String
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
    origin string
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    status string
    Status of the fallback origin's activation.
    zoneId string
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
    origin str
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    status str
    Status of the fallback origin's activation.
    zone_id str
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
    origin String
    Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
    status String
    Status of the fallback origin's activation.
    zoneId String
    The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.

    Import

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

    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.23.0 published on Monday, Mar 25, 2024 by Pulumi