planetscale.BranchSafeMigrations
Explore with Pulumi AI
Manages safe migrations settings for a PlanetScale branch.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as planetscale from "@pulumi/planetscale";
// Enable safe_migrations on default branch:
const example = new planetscale.Database("example", {
organization: "example",
defaultBranch: "main",
});
const main = new planetscale.BranchSafeMigrations("main", {
organization: planetscale_branch.example.organization,
database: planetscale_branch.example.database,
branch: planetscale_branch.example.default_branch,
enabled: true,
});
// Enable safe_migrations on a branch:
const stagingBranch = new planetscale.Branch("stagingBranch", {
organization: planetscale_branch.example.organization,
database: planetscale_branch.example.database,
parentBranch: planetscale_branch.example.default_branch,
});
const stagingBranchSafeMigrations = new planetscale.BranchSafeMigrations("stagingBranchSafeMigrations", {
database: example.name,
organization: example.organization,
branch: stagingBranch.name,
enabled: true,
});
import pulumi
import pulumi_planetscale as planetscale
# Enable safe_migrations on default branch:
example = planetscale.Database("example",
organization="example",
default_branch="main")
main = planetscale.BranchSafeMigrations("main",
organization=planetscale_branch["example"]["organization"],
database=planetscale_branch["example"]["database"],
branch=planetscale_branch["example"]["default_branch"],
enabled=True)
# Enable safe_migrations on a branch:
staging_branch = planetscale.Branch("stagingBranch",
organization=planetscale_branch["example"]["organization"],
database=planetscale_branch["example"]["database"],
parent_branch=planetscale_branch["example"]["default_branch"])
staging_branch_safe_migrations = planetscale.BranchSafeMigrations("stagingBranchSafeMigrations",
database=example.name,
organization=example.organization,
branch=staging_branch.name,
enabled=True)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/planetscale/planetscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Enable safe_migrations on default branch:
example, err := planetscale.NewDatabase(ctx, "example", &planetscale.DatabaseArgs{
Organization: pulumi.String("example"),
DefaultBranch: pulumi.String("main"),
})
if err != nil {
return err
}
_, err = planetscale.NewBranchSafeMigrations(ctx, "main", &planetscale.BranchSafeMigrationsArgs{
Organization: pulumi.Any(planetscale_branch.Example.Organization),
Database: pulumi.Any(planetscale_branch.Example.Database),
Branch: pulumi.Any(planetscale_branch.Example.Default_branch),
Enabled: pulumi.Bool(true),
})
if err != nil {
return err
}
// Enable safe_migrations on a branch:
stagingBranch, err := planetscale.NewBranch(ctx, "stagingBranch", &planetscale.BranchArgs{
Organization: pulumi.Any(planetscale_branch.Example.Organization),
Database: pulumi.Any(planetscale_branch.Example.Database),
ParentBranch: pulumi.Any(planetscale_branch.Example.Default_branch),
})
if err != nil {
return err
}
_, err = planetscale.NewBranchSafeMigrations(ctx, "stagingBranchSafeMigrations", &planetscale.BranchSafeMigrationsArgs{
Database: example.Name,
Organization: example.Organization,
Branch: stagingBranch.Name,
Enabled: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Planetscale = Pulumi.Planetscale;
return await Deployment.RunAsync(() =>
{
// Enable safe_migrations on default branch:
var example = new Planetscale.Database("example", new()
{
Organization = "example",
DefaultBranch = "main",
});
var main = new Planetscale.BranchSafeMigrations("main", new()
{
Organization = planetscale_branch.Example.Organization,
Database = planetscale_branch.Example.Database,
Branch = planetscale_branch.Example.Default_branch,
Enabled = true,
});
// Enable safe_migrations on a branch:
var stagingBranch = new Planetscale.Branch("stagingBranch", new()
{
Organization = planetscale_branch.Example.Organization,
Database = planetscale_branch.Example.Database,
ParentBranch = planetscale_branch.Example.Default_branch,
});
var stagingBranchSafeMigrations = new Planetscale.BranchSafeMigrations("stagingBranchSafeMigrations", new()
{
Database = example.Name,
Organization = example.Organization,
Branch = stagingBranch.Name,
Enabled = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.planetscale.Database;
import com.pulumi.planetscale.DatabaseArgs;
import com.pulumi.planetscale.BranchSafeMigrations;
import com.pulumi.planetscale.BranchSafeMigrationsArgs;
import com.pulumi.planetscale.Branch;
import com.pulumi.planetscale.BranchArgs;
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) {
// Enable safe_migrations on default branch:
var example = new Database("example", DatabaseArgs.builder()
.organization("example")
.defaultBranch("main")
.build());
var main = new BranchSafeMigrations("main", BranchSafeMigrationsArgs.builder()
.organization(planetscale_branch.example().organization())
.database(planetscale_branch.example().database())
.branch(planetscale_branch.example().default_branch())
.enabled(true)
.build());
// Enable safe_migrations on a branch:
var stagingBranch = new Branch("stagingBranch", BranchArgs.builder()
.organization(planetscale_branch.example().organization())
.database(planetscale_branch.example().database())
.parentBranch(planetscale_branch.example().default_branch())
.build());
var stagingBranchSafeMigrations = new BranchSafeMigrations("stagingBranchSafeMigrations", BranchSafeMigrationsArgs.builder()
.database(example.name())
.organization(example.organization())
.branch(stagingBranch.name())
.enabled(true)
.build());
}
}
resources:
# Enable safe_migrations on default branch:
example:
type: planetscale:Database
properties:
organization: example
defaultBranch: main
main:
type: planetscale:BranchSafeMigrations
properties:
organization: ${planetscale_branch.example.organization}
database: ${planetscale_branch.example.database}
branch: ${planetscale_branch.example.default_branch}
enabled: true
# Enable safe_migrations on a branch:
stagingBranch:
type: planetscale:Branch
properties:
organization: ${planetscale_branch.example.organization}
database: ${planetscale_branch.example.database}
parentBranch: ${planetscale_branch.example.default_branch}
stagingBranchSafeMigrations:
type: planetscale:BranchSafeMigrations
properties:
database: ${example.name}
organization: ${example.organization}
branch: ${stagingBranch.name}
enabled: true
Create BranchSafeMigrations Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BranchSafeMigrations(name: string, args: BranchSafeMigrationsArgs, opts?: CustomResourceOptions);
@overload
def BranchSafeMigrations(resource_name: str,
args: BranchSafeMigrationsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BranchSafeMigrations(resource_name: str,
opts: Optional[ResourceOptions] = None,
branch: Optional[str] = None,
database: Optional[str] = None,
enabled: Optional[bool] = None,
organization: Optional[str] = None)
func NewBranchSafeMigrations(ctx *Context, name string, args BranchSafeMigrationsArgs, opts ...ResourceOption) (*BranchSafeMigrations, error)
public BranchSafeMigrations(string name, BranchSafeMigrationsArgs args, CustomResourceOptions? opts = null)
public BranchSafeMigrations(String name, BranchSafeMigrationsArgs args)
public BranchSafeMigrations(String name, BranchSafeMigrationsArgs args, CustomResourceOptions options)
type: planetscale:BranchSafeMigrations
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args BranchSafeMigrationsArgs
- 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 BranchSafeMigrationsArgs
- 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 BranchSafeMigrationsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BranchSafeMigrationsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BranchSafeMigrationsArgs
- 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 branchSafeMigrationsResource = new Planetscale.BranchSafeMigrations("branchSafeMigrationsResource", new()
{
Branch = "string",
Database = "string",
Enabled = false,
Organization = "string",
});
example, err := planetscale.NewBranchSafeMigrations(ctx, "branchSafeMigrationsResource", &planetscale.BranchSafeMigrationsArgs{
Branch: pulumi.String("string"),
Database: pulumi.String("string"),
Enabled: pulumi.Bool(false),
Organization: pulumi.String("string"),
})
var branchSafeMigrationsResource = new BranchSafeMigrations("branchSafeMigrationsResource", BranchSafeMigrationsArgs.builder()
.branch("string")
.database("string")
.enabled(false)
.organization("string")
.build());
branch_safe_migrations_resource = planetscale.BranchSafeMigrations("branchSafeMigrationsResource",
branch="string",
database="string",
enabled=False,
organization="string")
const branchSafeMigrationsResource = new planetscale.BranchSafeMigrations("branchSafeMigrationsResource", {
branch: "string",
database: "string",
enabled: false,
organization: "string",
});
type: planetscale:BranchSafeMigrations
properties:
branch: string
database: string
enabled: false
organization: string
BranchSafeMigrations 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 BranchSafeMigrations resource accepts the following input properties:
- Branch string
- The name of the branch to configure safe migrations on..
- Database string
- The database this branch belongs to.
- Enabled bool
- Whether safe migrations are enabled for this branch.
- Organization string
- The organization this branch belongs to.
- Branch string
- The name of the branch to configure safe migrations on..
- Database string
- The database this branch belongs to.
- Enabled bool
- Whether safe migrations are enabled for this branch.
- Organization string
- The organization this branch belongs to.
- branch String
- The name of the branch to configure safe migrations on..
- database String
- The database this branch belongs to.
- enabled Boolean
- Whether safe migrations are enabled for this branch.
- organization String
- The organization this branch belongs to.
- branch string
- The name of the branch to configure safe migrations on..
- database string
- The database this branch belongs to.
- enabled boolean
- Whether safe migrations are enabled for this branch.
- organization string
- The organization this branch belongs to.
- branch str
- The name of the branch to configure safe migrations on..
- database str
- The database this branch belongs to.
- enabled bool
- Whether safe migrations are enabled for this branch.
- organization str
- The organization this branch belongs to.
- branch String
- The name of the branch to configure safe migrations on..
- database String
- The database this branch belongs to.
- enabled Boolean
- Whether safe migrations are enabled for this branch.
- organization String
- The organization this branch belongs to.
Outputs
All input properties are implicitly available as output properties. Additionally, the BranchSafeMigrations 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 BranchSafeMigrations Resource
Get an existing BranchSafeMigrations 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?: BranchSafeMigrationsState, opts?: CustomResourceOptions): BranchSafeMigrations
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
branch: Optional[str] = None,
database: Optional[str] = None,
enabled: Optional[bool] = None,
organization: Optional[str] = None) -> BranchSafeMigrations
func GetBranchSafeMigrations(ctx *Context, name string, id IDInput, state *BranchSafeMigrationsState, opts ...ResourceOption) (*BranchSafeMigrations, error)
public static BranchSafeMigrations Get(string name, Input<string> id, BranchSafeMigrationsState? state, CustomResourceOptions? opts = null)
public static BranchSafeMigrations get(String name, Output<String> id, BranchSafeMigrationsState state, CustomResourceOptions options)
resources: _: type: planetscale:BranchSafeMigrations get: id: ${id}
- 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.
- Branch string
- The name of the branch to configure safe migrations on..
- Database string
- The database this branch belongs to.
- Enabled bool
- Whether safe migrations are enabled for this branch.
- Organization string
- The organization this branch belongs to.
- Branch string
- The name of the branch to configure safe migrations on..
- Database string
- The database this branch belongs to.
- Enabled bool
- Whether safe migrations are enabled for this branch.
- Organization string
- The organization this branch belongs to.
- branch String
- The name of the branch to configure safe migrations on..
- database String
- The database this branch belongs to.
- enabled Boolean
- Whether safe migrations are enabled for this branch.
- organization String
- The organization this branch belongs to.
- branch string
- The name of the branch to configure safe migrations on..
- database string
- The database this branch belongs to.
- enabled boolean
- Whether safe migrations are enabled for this branch.
- organization string
- The organization this branch belongs to.
- branch str
- The name of the branch to configure safe migrations on..
- database str
- The database this branch belongs to.
- enabled bool
- Whether safe migrations are enabled for this branch.
- organization str
- The organization this branch belongs to.
- branch String
- The name of the branch to configure safe migrations on..
- database String
- The database this branch belongs to.
- enabled Boolean
- Whether safe migrations are enabled for this branch.
- organization String
- The organization this branch belongs to.
Import
Safe migrations configuration can be imported using “org,database,branch” as the identifier.
$ pulumi import planetscale:index/branchSafeMigrations:BranchSafeMigrations example "org,database,branch"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- planetscale planetscale/terraform-provider-planetscale
- License
- Notes
- This Pulumi package is based on the
planetscale
Terraform Provider.