Logpush Ownership Challenge
Provides a resource which manages Cloudflare Logpush ownership challenges to use in a Logpush Job. On it's own, doesn't do much however this resource should be used in conjunction to create Logpush jobs.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as cloudflare from "@pulumi/cloudflare";
const example = new cloudflare.LogpushOwnershipChallenge("example", {
zoneId: "0da42c8d2132a9ddaf714f9e7c920711",
destinationConf: "s3://my-bucket-path?region=us-west-2",
});
Content copied to clipboard
import pulumi
import pulumi_cloudflare as cloudflare
example = cloudflare.LogpushOwnershipChallenge("example",
zone_id="0da42c8d2132a9ddaf714f9e7c920711",
destination_conf="s3://my-bucket-path?region=us-west-2")
Content copied to clipboard
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Cloudflare = Pulumi.Cloudflare;
return await Deployment.RunAsync(() =>
{
var example = new Cloudflare.LogpushOwnershipChallenge("example", new()
{
ZoneId = "0da42c8d2132a9ddaf714f9e7c920711",
DestinationConf = "s3://my-bucket-path?region=us-west-2",
});
});
Content copied to clipboard
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.NewLogpushOwnershipChallenge(ctx, "example", &cloudflare.LogpushOwnershipChallengeArgs{
ZoneId: pulumi.String("0da42c8d2132a9ddaf714f9e7c920711"),
DestinationConf: pulumi.String("s3://my-bucket-path?region=us-west-2"),
})
if err != nil {
return err
}
return nil
})
}
Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.cloudflare.LogpushOwnershipChallenge;
import com.pulumi.cloudflare.LogpushOwnershipChallengeArgs;
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 LogpushOwnershipChallenge("example", LogpushOwnershipChallengeArgs.builder()
.zoneId("0da42c8d2132a9ddaf714f9e7c920711")
.destinationConf("s3://my-bucket-path?region=us-west-2")
.build());
}
}
Content copied to clipboard
resources:
example:
type: cloudflare:LogpushOwnershipChallenge
properties:
zoneId: 0da42c8d2132a9ddaf714f9e7c920711
destinationConf: s3://my-bucket-path?region=us-west-2
Content copied to clipboard
Properties
Link copied to clipboard
Uniquely identifies a resource (such as an s3 bucket) where data will be pushed. Additional configuration parameters supported by the destination may be included. See Logpush destination documentation. Modifying this attribute will force creation of a new resource.
Link copied to clipboard
The filename of the ownership challenge which contains the contents required for Logpush Job creation.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard