Workflow
Export-PSCFNTerraform performs the following steps
- Ensure the workspace directory set by the
-WorkspaceDirectory
is clear. If a state file exists at this location, you will be asked whether to overwrite it. If you decline, the cmdlet will exit.
If you give the-Force
argument, any existing state will be silently overwritten.
If you do not want to overwrite an existing state, choose a new workspace directory. - The CloudFormation stack is parsed and analysed. If additional providers are needed besides
aws
, these are selected - An initial
main.tf
is output with the terraform and provider configuration blocks along with empty resource declarations for the resources found in the CloudFormation template. terraform init
is invoked to set up the providers.- If exporting nested stacks to modules, the stacks are processed depth-first and steps 6 thru 10 are executed for each nested stack finishing with the root stack.
- For each mapped resouce,
terraform import
is invoked to build up the state file. - The state file is read and analysed alongside the object graph generated from parsing the CloudFormation in order to determine dependencies between resources, inputs and outputs.
- Lambdas are analysed and their code locations fixed up (see here).
- The state file along with the fixed up dependencies is serialized to HCL in
main.tf
. If the CloudFormation template contains aMappings
section, this is serialized as alocals
block, and!FindInMap
references into it are resolved. - A
terraform.tfvars
file is created with values for all inputs as per the current parameter values of the exported CloudFormation Stack. Note that values forNoEcho
variables must be provided on the command line to Export-PSCFNTerraform. - The generated HCL is checked for consistency. Any warnings or errors are reported.
terraform fmt
is invoked to tidy the output. This may find some issues.terraform validate
is invoked to check further for issues.terraform plan
is invoked to check for resources that will be destroyed or replaced without manual intervention.
- Summary is output to console.