Cloudflare
CustomHostnameFallbackOrigin
Provides a Cloudflare custom hostname fallback origin resource.
Example Usage
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
class MyStack : Stack
{
public MyStack()
{
var fallbackOrigin = new Cloudflare.CustomHostnameFallbackOrigin("fallbackOrigin", new Cloudflare.CustomHostnameFallbackOriginArgs
{
Origin = "fallback.example.com",
ZoneId = "d41d8cd98f00b204e9800998ecf8427e",
});
}
}
package main
import (
"github.com/pulumi/pulumi-cloudflare/sdk/v4/go/cloudflare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudflare.NewCustomHostnameFallbackOrigin(ctx, "fallbackOrigin", &cloudflare.CustomHostnameFallbackOriginArgs{
Origin: pulumi.String("fallback.example.com"),
ZoneId: pulumi.String("d41d8cd98f00b204e9800998ecf8427e"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import java.util.*;
import java.io.*;
import java.nio.*;
import com.pulumi.*;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var fallbackOrigin = new CustomHostnameFallbackOrigin("fallbackOrigin", CustomHostnameFallbackOriginArgs.builder()
.origin("fallback.example.com")
.zoneId("d41d8cd98f00b204e9800998ecf8427e")
.build());
}
}
import pulumi
import pulumi_cloudflare as cloudflare
fallback_origin = cloudflare.CustomHostnameFallbackOrigin("fallbackOrigin",
origin="fallback.example.com",
zone_id="d41d8cd98f00b204e9800998ecf8427e")
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const fallbackOrigin = new cloudflare.CustomHostnameFallbackOrigin("fallback_origin", {
origin: "fallback.example.com",
zoneId: "d41d8cd98f00b204e9800998ecf8427e",
});
resources:
fallbackOrigin:
type: cloudflare:CustomHostnameFallbackOrigin
properties:
origin: fallback.example.com
zoneId: d41d8cd98f00b204e9800998ecf8427e
Create a 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:
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomHostnameFallbackOrigin resource produces the following output properties:
Look up an 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.
Import
Custom hostname fallback origins can be imported using a composite ID formed of the zone ID and fallback origin, separated by a “/” e.g.
$ pulumi import cloudflare:index/customHostnameFallbackOrigin:CustomHostnameFallbackOrigin example d41d8cd98f00b204e9800998ecf8427e/fallback.example.com
Package Details
- Repository
- https://github.com/pulumi/pulumi-cloudflare
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
cloudflare
Terraform Provider.