Skip to content

threefoldtech/pulumi-threefold

Repository files navigation

Pulumi-threefold

Integration tests Lint Dependabot gopherbadger-tag-do-not-edit

A pulumi provider for the threefold grid to manage your infrastructure using pulumi. The provider is available at pulumi registry.

Requirements

Using the provider

  • Install the provider
make install_latest
  • You can try to run examples:
cd examples/virtual_machine

export MNEMONIC="mnemonic words"
export NETWORK="network" # dev, qa, test, main -> default is dev

make run
  • to destroy the resources you created:
make destroy

Building The Provider (for development only)

make build

Run tests

export MNEMONIC="mnemonic words"
export NETWORK="network" # dev, qa, test, main -> default is dev
  • Integration tests

    make integration