Skip to content

An experimental CLI that generates Terraform files for managing existing Fastly services

License

Notifications You must be signed in to change notification settings

hrmsk66/terraformify

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

terraformify

An experimental CLI that generates Terraform files for managing existing Fastly services.

Important

Known Issue: Incompatibility with Terraform 1.4.6 and Later
terraformify is not compatible with Terraform versions 1.4.6 and later because of changes in the Terraform binary. Please use terraformify with Terraform version 1.4.5 or earlier. For more information, see the issue at #49.

Installation / Upgrade

go install github.com/hrmsk66/terraformify@latest

Alternatively, download the prebuild binary from the latest release.

Configuration

terraformify requires read access to your Fastly resources. Choose one of the following options to give terraformify access to your API token:

  • Include the token explicitly on each command you run using the --api-key or -k flags.
  • Set a FASTLY_API_KEY environment variable.

Usage

Run terraformify command in an empty directory or in an existing TF directory.

Important

Executing the command within a directory containing existing TF files will alter the current state file and may modify other files (notably variables.tf and terraform.tfvars). It's advisable to back up your TF files before importing a new service.

Importing VCL Service

terraformify service vcl <service-id>

Importing Compute Service

For Compute services, provide the service ID and the path to the WASM package as arguments:

terraformify service compute <service-id> -p <path-to-package>

For more detailed usage instructions, including available flags and commands, see the Usage Documentation.

Supported Resources

terraformify supports the import of both Compute and VCL services, along with their associated resources. The following resources are supported:

Supported Resources for VCL

Supported Resources for Compute

License

MIT License