Add a site
In this tutorial, you will go through step-by-step instructions to bring an existing site to Cloudflare using Pulumi Infrastructure as Code (IaC) so that you can become familiar with the resource management lifecycle. In particular, you will create a Zone and a DNS record to resolve your newly added site. This tutorial adopts the IaC principle to complete the steps listed in the Add site tutorial.
Ensure you have:
- A Cloudflare account and API Token with permission to edit the resources in this tutorial. If you need to, sign up for a Cloudflare account ↗ before continuing. Your token must have:
Zone-Zone-EditpermissionZone-DNS-Editpermissioninclude-All zones from an account-<your account>zone resource
- A Pulumi Cloud account. You can sign up for an always-free, individual tier ↗.
- The Pulumi CLI is installed on your machine.
- A Pulumi-supported programming language ↗ is configured. (TypeScript, JavaScript, Python, Go, .NET, Java, or use YAML)
- A domain name. You may use
example.comto complete the tutorial.
Use a new and empty directory for this tutorial.
mkdir addsite-cloudflarecd addsite-cloudflareAt the prompt, press Enter to log into your Pulumi Cloud account via the browser. Alternatively, you may provide a Pulumi Cloud access token ↗.
pulumi loginTo create a program, select your language of choice and run the pulumi command:
pulumi new javascript --name addsite-cloudflare --yes# wait a few seconds while the project is initializedpulumi new typescript --name addsite-cloudflare --yes# wait a few seconds while the project is initializedpulumi new python --name addsite-cloudflare --yes# wait a few seconds while the project is initializedpulumi new go --name addsite-cloudflare --yes# wait a few seconds while the project is initializedpulumi new java --name addsite-cloudflare --yes# wait a few seconds while the project is initializedpulumi new csharp --name addsite-cloudflare --yes# wait a few seconds while the project is initializedpulumi new yaml --name addsite-cloudflare --yesYou will need:
- Your Cloudflare account ID.
- A valid Cloudflare API token.
- A domain. For instance,
example.com.
# Define an ESC Environment nameE=my-dev-env
# Create a new Pulumi ESC Environmentpulumi config env init --env $E --yes --stack dev
# Replace API_TOKEN with your Cloudflare API Tokenpulumi env set $E --secret pulumiConfig.cloudflare:apiToken API_TOKEN
# Replace abc123 with your Cloudflare Account IDpulumi env set $E --plaintext pulumiConfig.accountId abc123
# Replace example.com with your registered domain, or leave as ispulumi env set $E --plaintext pulumiConfig.domain example.com
# Review your ESC Environmentpulumi env open $E{ "pulumiConfig": { "accountId": "111222333", "cloudflare:apiToken": "abc123abc123", "domain": "example.com" }}To instantiate your dev stack, run:
pulumi up --yes --stack dev# wait a few seconds for the stack to be instantiated.At this point, you have not defined any resources so you’ll have an empty stack.
You will now add the Pulumi Cloudflare package and a Cloudflare Zone resource to your Pulumi program.
npm install @pulumi/cloudflareadded 1 package ...npm install @pulumi/cloudflareadded 1 package ...echo "pulumi_cloudflare>=5.35,<6.0.0" >> requirements.txtsource venv/bin/activatepip install -r requirements.txt...Collecting pulumi-cloudflare...go get github.com/pulumi/pulumi-cloudflare/sdk/v3/go/cloudflarego: downloading github.com/pulumi/pulumi-cloudflare ...Below are Apache Maven instructions. For other Java project managers such as Gradle, see the official Maven repository ↗
- Open your
pom.xmlfile. - Add the Pulumi Cloudflare dependency inside the
<dependencies>section.
<dependency> <groupId>com.pulumi</groupId> <artifactId>cloudflare</artifactId> <version>5.35.1</version></dependency>- Run:
mvn clean install...[INFO] BUILD SUCCESS...dotnet add package Pulumi.Cloudflare...info : Adding PackageReference for package 'Pulumi.Cloudflare' into project...There are no dependencies to download for YAML. Skip ahead.
Replace the contents of your entrypoint file with the following:
"use strict";const pulumi = require("@pulumi/pulumi");const cloudflare = require("@pulumi/cloudflare");
const config = new pulumi.Config();const accountId = config.require("accountId");const domain = config.require("domain");
// Create a Cloudflare resource (Zone)const zone = new cloudflare.Zone("my-zone", { zone: domain, accountId: accountId, plan: "free", jumpStart: true,});
// Export the zone IDexports.zoneId = zone.id;import * as pulumi from "@pulumi/pulumi";import * as cloudflare from "@pulumi/cloudflare";
const config = new pulumi.Config();const accountId = config.require("accountId");const domain = config.require("domain");
// Create a Cloudflare resource (Zone)const zone = new cloudflare.Zone("my-zone", { zone: domain, accountId: accountId, plan: "free", jumpStart: true,});
// Export the zone IDexport const zoneId = zone.id;import pulumiimport pulumi_cloudflare as cloudflare
account_id = pulumi.Config().require("accountId")domain = pulumi.Config().require("domain")
# Create a Cloudflare resource (Zone)zone = cloudflare.Zone("my-zone", zone=domain, account_id=account_id, plan="free", jump_start=True)
# Export the zone IDpulumi.export("zoneId", zone.id)package main
import ( "github.com/pulumi/pulumi/sdk/v3/go/pulumi" cloudflare "github.com/pulumi/pulumi-cloudflare/sdk/v3/go/cloudflare")
func main() { pulumi.Run(func(ctx *pulumi.Context) error { domain, _ := ctx.GetConfig("domain")
// Create a Cloudflare resource (Zone) zone, err := cloudflare.NewZone(ctx, "my-zone", &cloudflare.ZoneArgs{ Zone: pulumi.String(domain), Plan: pulumi.String("free"), JumpStart: pulumi.Bool(true), }) if err != nil { return err }
// Export the zone ID ctx.Export("zoneId", zone.ID()) return nil })}The entrypoint file is under the src/main/java/myproject directory.
package myproject;
import com.pulumi.Pulumi;import com.pulumi.Context;import com.pulumi.cloudflare.ZoneArgs;import com.pulumi.cloudflare.Zone;
public class App { public static void main(String[] args) { Pulumi.run(ctx -> { var config = ctx.config();
String accountId = config.require("accountId"); String domain = config.require("domain");
var zone = new Zone("my-zone", ZoneArgs.builder() .zone(domain) .accountId(accountId) .plan("free") .jumpStart(true) .build());
ctx.export("zoneId", zone.id()); }); }}using System.Threading.Tasks;using Pulumi;using Pulumi.Cloudflare;
class Program{ static Task<int> Main() => Deployment.RunAsync<MyStack>();
class MyStack : Stack { public MyStack() { var config = new Pulumi.Config(); var accountId = config.Require("accountId"); var domain = config.Require("domain");
var zone = new Zone("my-zone", new ZoneArgs { ZoneName = domain, AccountId = accountId, Plan = "free", JumpStart = true });
this.ZoneId = zone.Id; }
[Output] public Output<string> ZoneId { get; set; } }}environment: - my-dev-env
resources: myZone: type: cloudflare:Zone properties: zone: ${domain} accountId: ${accountId} plan: "free" jumpStart: true
outputs: zoneId: ${myZone.id}pulumi up --yes --stack dev# wait a few seconds while the changes take effectReview the value of zoneId to confirm the Zone creation.
pulumi stack output zoneIdd8fcb6d731fe1c2d75e2e8d6ad63fad5Once you have added a domain to Cloudflare, that domain will receive two assigned authoritative nameservers.
Towards the end of your entrypoint file, below the zoneId variable, add the following:
exports.nameservers = zone.nameServers;exports.status = zone.status;export const nameservers = zone.nameServers;export const status = zone.status;pulumi.export('nameservers', zone.name_servers)pulumi.export('status', zone.status)ctx.Export("nameservers", zone.NameServers)ctx.Export("status", zone.Status)ctx.export("nameservers", zone.nameServers());ctx.export("status", zone.status());- Add
using System.Collections.Immutable;at the top of yourProgram.csfile. - Below
this.ZoneId = zone.Id;, add:
this.Nameservers = zone.NameServers;this.Status = zone.Status;- Below
public Output<string> ZoneId { get; set; }, add:
public Output<ImmutableArray<string>> Nameservers { get; set; }public Output<string> Status { get; set; }nameservers: ${exampleZone.nameServers}status: ${exampleZone.status}pulumi up --yes --stack devReview the value of nameservers to retrieve the assigned nameservers:
pulumi stack output --stack devUpdate the nameservers at your registrar to activate Cloudflare services for your domain. Instructions are registrar-specific. You may be able to find guidance under this consolidated list of common registrars.
Once successfully registered, your domain status will change to active.
pulumi stack outputYou will now add a DNS record to your domain.
Below is the final version of how your Pulumi program entrypoint file should look. Replace the contents of your entrypoint file with the following:
"use strict";const pulumi = require("@pulumi/pulumi");const cloudflare = require("@pulumi/cloudflare");
const config = new pulumi.Config();const accountId = config.require("accountId");const domain = config.require("domain");
// Create a Cloudflare resource (Zone)const zone = new cloudflare.Zone("my-zone", { zone: domain, accountId: accountId, plan: "free", jumpStart: true,});
// Export the zone IDexports.zoneId = zone.id;exports.nameservers = zone.nameServers;exports.status = zone.status;
const record = new cloudflare.Record("my-record", { zoneId: zone.id, name: domain, value: "192.0.2.1", type: "A", proxied: true,});import * as pulumi from "@pulumi/pulumi";import * as cloudflare from "@pulumi/cloudflare";
const config = new pulumi.Config();const accountId = config.require("accountId");const domain = config.require("domain");
// Create a Cloudflare resource (Zone)const zone = new cloudflare.Zone("my-zone", { zone: domain, accountId: accountId, plan: "free", // Choose the desired plan, e.g., "free", "pro", "business", etc. jumpStart: true,});
// Export the zone IDexport const zoneId = zone.id;
// Export the Cloudflare-assigned nameservers.export const nameservers = zone.nameServers;
// Export the statusexport const status = zone.status;
// Set up a Record for your siteconst record = new cloudflare.Record("my-record", { zoneId: zoneId, name: domain, value: "192.0.2.1", type: "A", proxied: true,});import pulumiimport pulumi_cloudflare as cloudflare
account_id = pulumi.Config().require("accountId")domain = pulumi.Config().require("domain")
# Create a Cloudflare resource (Zone)zone = cloudflare.Zone("my-zone", zone=domain, account_id=account_id, plan="free", jump_start=True)
# Export the zone IDpulumi.export("zoneId", zone.id)pulumi.export('nameservers', zone.name_servers)pulumi.export('status', zone.status)
record = cloudflare.Record("my-record", zone_id=zone.id, name=domain, value="192.0.2.1", type="A", proxied=True)package main
import ( cloudflare "github.com/pulumi/pulumi-cloudflare/sdk/v3/go/cloudflare" "github.com/pulumi/pulumi/sdk/v3/go/pulumi")
func main() { pulumi.Run(func(ctx *pulumi.Context) error { domain, _ := ctx.GetConfig("domain")
// Create a Cloudflare resource (Zone) zone, err := cloudflare.NewZone(ctx, "my-zone", &cloudflare.ZoneArgs{ Zone: pulumi.String(domain), Plan: pulumi.String("free"), JumpStart: pulumi.Bool(true), }) if err != nil { return err }
// Export the zone ID ctx.Export("zoneId", zone.ID()) ctx.Export("nameservers", zone.NameServers) ctx.Export("status", zone.Status)
_, err = cloudflare.NewRecord(ctx, "my-record", &cloudflare.RecordArgs{ ZoneId: zone.ID(), Name: pulumi.String(domain), Value: pulumi.String("192.0.2.1"), Type: pulumi.String("A"), Proxied: pulumi.Bool(true), }) if err != nil { return err }
return nil })}package myproject;
import com.pulumi.Pulumi;import com.pulumi.Context;import com.pulumi.cloudflare.ZoneArgs;import com.pulumi.cloudflare.Zone;import com.pulumi.cloudflare.Record;import com.pulumi.cloudflare.RecordArgs;
public class App { public static void main(String[] args) { Pulumi.run(ctx -> { var config = ctx.config();
String accountId = config.require("accountId"); String domain = config.require("domain");
var zone = new Zone("my-zone", ZoneArgs.builder() .zone(domain) .accountId(accountId) .plan("free") .jumpStart(true) .build());
ctx.export("zoneId", zone.id()); ctx.export("nameservers", zone.nameServers()); ctx.export("status", zone.status());
new Record("my-record", RecordArgs.builder() .zoneId(zone.id()) .name(domain) .value("192.0.2.1") .type("A") .proxied(true) .build()); }); }}using System.Collections.Immutable;using System.Threading.Tasks;using Pulumi;using Pulumi.Cloudflare;
class Program{ static Task<int> Main() => Deployment.RunAsync<MyStack>();
class MyStack : Stack { public MyStack() { var config = new Pulumi.Config(); var accountId = config.Require("accountId"); var domain = config.Require("domain");
var zone = new Zone("my-zone", new ZoneArgs { ZoneName = domain, AccountId = accountId, Plan = "free", JumpStart = true });
this.ZoneId = zone.Id; this.Nameservers = zone.NameServers; this.Status = zone.Status;
new Record("my-record", new RecordArgs { ZoneId = zone.Id, Name = domain, Value = "192.0.2.1", Type = "A", Proxied = true });
}
[Output] public Output<string> ZoneId { get; set; } public Output<ImmutableArray<string>> Nameservers { get; set; } public Output<string> Status { get; set; } }}environment: - my-dev-env
resources: myZone: type: cloudflare:Zone properties: zone: ${domain} accountId: ${accountId} plan: "free" jumpStart: true
myRecord: type: cloudflare:Record properties: zoneId: ${myZone.id} name: ${domain} value: 192.0.2.1 type: A proxied: trueoutputs: zoneId: ${myZone.id} nameservers: ${exampleZone.nameServers} status: ${exampleZone.status}pulumi up --yes --stack devYou will run two nslookup commands against the Cloudflare-assigned nameservers.
To test your site, run:
DOMAIN=$(pulumi config get domain)NS1=$(pulumi stack output nameservers | jq '.[0]' -r)NS2=$(pulumi stack output nameservers | jq '.[1]' -r)nslookup $DOMAIN $NS1nslookup $DOMAIN $NS2For .NET use Nameservers as the Output.
Confirm your response returns the IP address(es) for your site.
In this last step, you will remove the resources and stack used throughout the tutorial.
pulumi destroy --yespulumi stack rm devYou have incrementally defined Cloudflare resources needed to add a site to Cloudflare. After each new resource, you apply the changes to your dev stack via the pulumi up command. You declare the resources in your programming language of choice and let Pulumi handle the rest.
Follow the Hello World tutorial to deploy a serverless app with Pulumi.