1. Packages
  2. Fastly Provider
  3. API Docs
  4. Configstore
Fastly v9.0.0 published on Tuesday, Apr 8, 2025 by Pulumi

fastly.Configstore

Explore with Pulumi AI

Provides a container that lets you store data in key-value pairs that are accessible to Compute services during request processing.

In order for a Config Store (fastly.Configstore) to be accessible to a Compute service you’ll first need to define a Compute service (fastly.ServiceCompute) in your configuration, and then create a link to the Config Store from within the service using the resource_link block (shown in the below examples).

Example Usage

Basic usage:

import * as pulumi from "@pulumi/pulumi";
import * as fastly from "@pulumi/fastly";

// IMPORTANT: Deleting a Config Store requires first deleting its resource_link.
// This requires a two-step `pulumi up` as we can't guarantee deletion order.
// e.g. resource_link deletion within fastly_service_compute might not finish first.
const exampleConfigstore = new fastly.Configstore("example", {name: "my_config_store"});
const example = fastly.getPackageHash({
    filename: "package.tar.gz",
});
const exampleServiceCompute = new fastly.ServiceCompute("example", {
    name: "my_compute_service",
    domains: [{
        name: "demo.example.com",
    }],
    "package": {
        filename: "package.tar.gz",
        sourceCodeHash: example.then(example => example.hash),
    },
    resourceLinks: [{
        name: "my_resource_link",
        resourceId: exampleConfigstore.id,
    }],
    forceDestroy: true,
});
Copy
import pulumi
import pulumi_fastly as fastly

# IMPORTANT: Deleting a Config Store requires first deleting its resource_link.
# This requires a two-step `pulumi up` as we can't guarantee deletion order.
# e.g. resource_link deletion within fastly_service_compute might not finish first.
example_configstore = fastly.Configstore("example", name="my_config_store")
example = fastly.get_package_hash(filename="package.tar.gz")
example_service_compute = fastly.ServiceCompute("example",
    name="my_compute_service",
    domains=[{
        "name": "demo.example.com",
    }],
    package={
        "filename": "package.tar.gz",
        "source_code_hash": example.hash,
    },
    resource_links=[{
        "name": "my_resource_link",
        "resource_id": example_configstore.id,
    }],
    force_destroy=True)
Copy
package main

import (
	"github.com/pulumi/pulumi-fastly/sdk/v9/go/fastly"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		// IMPORTANT: Deleting a Config Store requires first deleting its resource_link.
		// This requires a two-step `pulumi up` as we can't guarantee deletion order.
		// e.g. resource_link deletion within fastly_service_compute might not finish first.
		exampleConfigstore, err := fastly.NewConfigstore(ctx, "example", &fastly.ConfigstoreArgs{
			Name: pulumi.String("my_config_store"),
		})
		if err != nil {
			return err
		}
		example, err := fastly.GetPackageHash(ctx, &fastly.GetPackageHashArgs{
			Filename: pulumi.StringRef("package.tar.gz"),
		}, nil)
		if err != nil {
			return err
		}
		_, err = fastly.NewServiceCompute(ctx, "example", &fastly.ServiceComputeArgs{
			Name: pulumi.String("my_compute_service"),
			Domains: fastly.ServiceComputeDomainArray{
				&fastly.ServiceComputeDomainArgs{
					Name: pulumi.String("demo.example.com"),
				},
			},
			Package: &fastly.ServiceComputePackageArgs{
				Filename:       pulumi.String("package.tar.gz"),
				SourceCodeHash: pulumi.String(example.Hash),
			},
			ResourceLinks: fastly.ServiceComputeResourceLinkArray{
				&fastly.ServiceComputeResourceLinkArgs{
					Name:       pulumi.String("my_resource_link"),
					ResourceId: exampleConfigstore.ID(),
				},
			},
			ForceDestroy: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fastly = Pulumi.Fastly;

return await Deployment.RunAsync(() => 
{
    // IMPORTANT: Deleting a Config Store requires first deleting its resource_link.
    // This requires a two-step `pulumi up` as we can't guarantee deletion order.
    // e.g. resource_link deletion within fastly_service_compute might not finish first.
    var exampleConfigstore = new Fastly.Configstore("example", new()
    {
        Name = "my_config_store",
    });

    var example = Fastly.GetPackageHash.Invoke(new()
    {
        Filename = "package.tar.gz",
    });

    var exampleServiceCompute = new Fastly.ServiceCompute("example", new()
    {
        Name = "my_compute_service",
        Domains = new[]
        {
            new Fastly.Inputs.ServiceComputeDomainArgs
            {
                Name = "demo.example.com",
            },
        },
        Package = new Fastly.Inputs.ServiceComputePackageArgs
        {
            Filename = "package.tar.gz",
            SourceCodeHash = example.Apply(getPackageHashResult => getPackageHashResult.Hash),
        },
        ResourceLinks = new[]
        {
            new Fastly.Inputs.ServiceComputeResourceLinkArgs
            {
                Name = "my_resource_link",
                ResourceId = exampleConfigstore.Id,
            },
        },
        ForceDestroy = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fastly.Configstore;
import com.pulumi.fastly.ConfigstoreArgs;
import com.pulumi.fastly.FastlyFunctions;
import com.pulumi.fastly.inputs.GetPackageHashArgs;
import com.pulumi.fastly.ServiceCompute;
import com.pulumi.fastly.ServiceComputeArgs;
import com.pulumi.fastly.inputs.ServiceComputeDomainArgs;
import com.pulumi.fastly.inputs.ServiceComputePackageArgs;
import com.pulumi.fastly.inputs.ServiceComputeResourceLinkArgs;
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) {
        // IMPORTANT: Deleting a Config Store requires first deleting its resource_link.
        // This requires a two-step `pulumi up` as we can't guarantee deletion order.
        // e.g. resource_link deletion within fastly_service_compute might not finish first.
        var exampleConfigstore = new Configstore("exampleConfigstore", ConfigstoreArgs.builder()
            .name("my_config_store")
            .build());

        final var example = FastlyFunctions.getPackageHash(GetPackageHashArgs.builder()
            .filename("package.tar.gz")
            .build());

        var exampleServiceCompute = new ServiceCompute("exampleServiceCompute", ServiceComputeArgs.builder()
            .name("my_compute_service")
            .domains(ServiceComputeDomainArgs.builder()
                .name("demo.example.com")
                .build())
            .package_(ServiceComputePackageArgs.builder()
                .filename("package.tar.gz")
                .sourceCodeHash(example.applyValue(getPackageHashResult -> getPackageHashResult.hash()))
                .build())
            .resourceLinks(ServiceComputeResourceLinkArgs.builder()
                .name("my_resource_link")
                .resourceId(exampleConfigstore.id())
                .build())
            .forceDestroy(true)
            .build());

    }
}
Copy
resources:
  # IMPORTANT: Deleting a Config Store requires first deleting its resource_link.
  # This requires a two-step `pulumi up` as we can't guarantee deletion order.
  # e.g. resource_link deletion within fastly_service_compute might not finish first.
  exampleConfigstore:
    type: fastly:Configstore
    name: example
    properties:
      name: my_config_store
  exampleServiceCompute:
    type: fastly:ServiceCompute
    name: example
    properties:
      name: my_compute_service
      domains:
        - name: demo.example.com
      package:
        filename: package.tar.gz
        sourceCodeHash: ${example.hash}
      resourceLinks:
        - name: my_resource_link
          resourceId: ${exampleConfigstore.id}
      forceDestroy: true
variables:
  example:
    fn::invoke:
      function: fastly:getPackageHash
      arguments:
        filename: package.tar.gz
Copy

Create Configstore Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Configstore(name: string, args?: ConfigstoreArgs, opts?: CustomResourceOptions);
@overload
def Configstore(resource_name: str,
                args: Optional[ConfigstoreArgs] = None,
                opts: Optional[ResourceOptions] = None)

@overload
def Configstore(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                force_destroy: Optional[bool] = None,
                name: Optional[str] = None)
func NewConfigstore(ctx *Context, name string, args *ConfigstoreArgs, opts ...ResourceOption) (*Configstore, error)
public Configstore(string name, ConfigstoreArgs? args = null, CustomResourceOptions? opts = null)
public Configstore(String name, ConfigstoreArgs args)
public Configstore(String name, ConfigstoreArgs args, CustomResourceOptions options)
type: fastly:Configstore
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 ConfigstoreArgs
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 ConfigstoreArgs
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 ConfigstoreArgs
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 ConfigstoreArgs
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. ConfigstoreArgs
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 configstoreResource = new Fastly.Configstore("configstoreResource", new()
{
    ForceDestroy = false,
    Name = "string",
});
Copy
example, err := fastly.NewConfigstore(ctx, "configstoreResource", &fastly.ConfigstoreArgs{
	ForceDestroy: pulumi.Bool(false),
	Name:         pulumi.String("string"),
})
Copy
var configstoreResource = new Configstore("configstoreResource", ConfigstoreArgs.builder()
    .forceDestroy(false)
    .name("string")
    .build());
Copy
configstore_resource = fastly.Configstore("configstoreResource",
    force_destroy=False,
    name="string")
Copy
const configstoreResource = new fastly.Configstore("configstoreResource", {
    forceDestroy: false,
    name: "string",
});
Copy
type: fastly:Configstore
properties:
    forceDestroy: false
    name: string
Copy

Configstore 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 Configstore resource accepts the following input properties:

ForceDestroy bool
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
Name Changes to this property will trigger replacement. string
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.
ForceDestroy bool
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
Name Changes to this property will trigger replacement. string
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.
forceDestroy Boolean
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
name Changes to this property will trigger replacement. String
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.
forceDestroy boolean
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
name Changes to this property will trigger replacement. string
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.
force_destroy bool
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
name Changes to this property will trigger replacement. str
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.
forceDestroy Boolean
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
name Changes to this property will trigger replacement. String
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Configstore Resource

Get an existing Configstore 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?: ConfigstoreState, opts?: CustomResourceOptions): Configstore
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        force_destroy: Optional[bool] = None,
        name: Optional[str] = None) -> Configstore
func GetConfigstore(ctx *Context, name string, id IDInput, state *ConfigstoreState, opts ...ResourceOption) (*Configstore, error)
public static Configstore Get(string name, Input<string> id, ConfigstoreState? state, CustomResourceOptions? opts = null)
public static Configstore get(String name, Output<String> id, ConfigstoreState state, CustomResourceOptions options)
resources:  _:    type: fastly:Configstore    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.
The following state arguments are supported:
ForceDestroy bool
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
Name Changes to this property will trigger replacement. string
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.
ForceDestroy bool
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
Name Changes to this property will trigger replacement. string
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.
forceDestroy Boolean
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
name Changes to this property will trigger replacement. String
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.
forceDestroy boolean
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
name Changes to this property will trigger replacement. string
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.
force_destroy bool
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
name Changes to this property will trigger replacement. str
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.
forceDestroy Boolean
Allow the Config Store to be deleted, even if it contains entries. Defaults to false.
name Changes to this property will trigger replacement. String
A unique name to identify the Config Store. It is important to note that changing this attribute will delete and recreate the Config Store, and discard the current entries. You MUST first delete the associated resource_link block from your service before modifying this field.

Import

Fastly Config Stores can be imported using their Store ID, e.g.

$ pulumi import fastly:index/configstore:Configstore example xxxxxxxxxxxxxxxxxxxx
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Fastly pulumi/pulumi-fastly
License
Apache-2.0
Notes
This Pulumi package is based on the fastly Terraform Provider.