cloudflare.CustomHostnameFallbackOrigin
Explore with Pulumi AI
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", {
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
origin: "fallback.example.com",
});
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.CustomHostnameFallbackOrigin("example",
zone_id="0da42c8d2132a9ddaf714f9e7c920711",
origin="fallback.example.com")
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{
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
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 example = new Cloudflare.CustomHostnameFallbackOrigin("example", new()
{
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
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 example = new CustomHostnameFallbackOrigin("example", CustomHostnameFallbackOriginArgs.builder()
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.origin("fallback.example.com")
.build());
}
}
resources:
example:
type: cloudflare:CustomHostnameFallbackOrigin
properties:
zoneId: 0da42c8d2132a9ddaf714f9e7c920711
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
This property is required. string - The unique name of the resource.
- args
This property is required. CustomHostnameFallbackOriginArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name
This property is required. str - The unique name of the resource.
- args
This property is required. 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
This property is required. string - The unique name of the resource.
- args
This property is required. CustomHostnameFallbackOriginArgs - The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name
This property is required. string - The unique name of the resource.
- args
This property is required. CustomHostnameFallbackOriginArgs - The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name
This property is required. String - The unique name of the resource.
- args
This property is required. 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
This property is required. string - Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
- Zone
Id This property is required. Changes to this property will trigger replacement.
- The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- Origin
This property is required. string - Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
- Zone
Id This property is required. Changes to this property will trigger replacement.
- The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- origin
This property is required. String - Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
- zone
Id This property is required. Changes to this property will trigger replacement.
- The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- origin
This property is required. string - Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
- zone
Id This property is required. Changes to this property will trigger replacement.
- The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- origin
This property is required. str - Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
- zone_
id This property is required. Changes to this property will trigger replacement.
- The zone identifier to target for the resource. Modifying this attribute will force creation of a new resource.
- origin
This property is required. String - Hostname you intend to fallback requests to. Origin must be a proxied A/AAAA/CNAME DNS record within Clouldflare.
- zone
Id This property is required. Changes to this property will trigger replacement.
- 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:
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)
resources: _: type: cloudflare:CustomHostnameFallbackOrigin get: id: ${id}
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - The unique provider ID of the resource to lookup.
- name
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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
This property is required. - The unique name of the resulting resource.
- id
This property is required. - 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.
- 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.
- Zone
Id Changes to this property will trigger replacement.
- 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.
- Zone
Id Changes to this property will trigger replacement.
- 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.
- zone
Id Changes to this property will trigger replacement.
- 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.
- zone
Id Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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.
- zone
Id Changes to this property will trigger replacement.
- 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>
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.