Takomo
  • What is Takomo?
  • Getting started
    • Installation
    • Quick start
    • Tutorial
  • Configuration
    • AWS credentials
    • Directory structure
    • Stacks and stack groups
    • Project configuration
  • Stack properties
    • Name
    • Regions
    • Template
    • Template bucket
    • Command role
    • Account ids
    • Depends
    • Parameters
    • Tags
    • Inherit tags
    • Termination protection
    • Timeout
    • Capabilities
    • Stack policy
    • Ignore
    • Obsolete
    • Hooks
    • Data
    • Schemas
  • Variables and templating
    • Introduction
    • Handlebars syntax
    • Environment variables
    • Command-line variables
    • Partials
    • Helpers
    • Available variables
  • Parameter resolvers
    • Built-in parameter resolvers
      • Stack output resolver
      • External stack output resolver
      • Command resolver
      • File contents resolver
      • Hook output resolver
      • SSM parameter resolver
      • Secret resolver
    • Custom parameter resolvers
  • Hooks
    • Built-in hooks
    • Custom hooks
    • Sharing data between hooks
  • Validation schemas
    • Custom validation schemas
  • Command-line usage
    • Common options
    • Deploy stacks
    • Undeploy stacks
    • Prune stacks
    • List stacks
    • Detect drift
    • Generate IAM policies
    • Inspect stack configuration
    • Inspect stack dependencies
  • Support
    • Getting help
    • Troubleshooting
  • Development
    • Change log
Powered by GitBook
On this page
  • v3.39.1
  • Bug fixes
  • v3.39.0
  • Features
  • Improvements
  • v3.38.1
  • v3.38.0
  • Features
  • v3.37.1
  • v3.37.0
  • Features
  • v3.36.0
  • Features
  • v3.35.2
  • Bug fixes
  • v3.35.1
  • Improvements
  • v3.35.0
  • Features
  • Bug fixes
  • v3.34.1
  • Improvements
  • Bug fixes
  • v3.34.0
  • Improvements
  • v3.33.2
  • v3.33.1
  • Features
  • v3.32.0
  • Improvements
  • Bug fixes
  • v3.31.2
  • Improvements
  • v3.31.1
  • Improvements
  • v3.31.0
  • Features
  • Bug fixes
  • v3.30.0
  • Features
  • v3.29.0
  • Features
  • Bug fixes
  • v3.28.0
  • Features
  • Bug fixes

Was this helpful?

Export as PDF
  1. Development

Change log

PreviousTroubleshooting

Last updated 3 years ago

Was this helpful?

v3.39.1

Released on 2021/12/12, ()

Bug fixes

  • Fix a bug that caused stacks marked as obsolete to be included in undeploy stacks operation if they depended on stacks chosen to be included in the undeploy operation.

v3.39.0

Released on 2021/12/11, ()

Features

Prune obsolete stacks

It's now easier to remove stacks that are no longer needed by marking them as obsolete and then executing the new ().

Improvements

  • Reviewing stacks to be deployed or undeployed now shows only the direct dependencies of the effected stacks. Previously, also transitive dependencies where shown, which caused the dependency list to become very long in larger projects with complex dependency graphs.

v3.38.1

This release includes only code refactoring and more tests.

v3.38.0

Features

Secret parameter resolver

This is an example of how you could use the secret parameter resolver in a stack configuration file:

parameters:
  DatabasePassword:
    resolver: secret
    secretId: my-password-secret

v3.37.1

This release includes only code refactoring and more tests.

v3.37.0

Features

Extending Takomo project configuration files

You use the extends property to make a project configuration file inherit configuration from another file:

takomo.yml
extends: ../takomo.parent.yml

v3.36.0

Features

Load custom Handlebars helpers from additional directories

v3.35.2

Bug fixes

v3.35.1

Improvements

  • Improve AWS API invocations and handling of concurrent operations

v3.35.0

Features

Expect no changes to stacks when deploying

Bug fixes

v3.34.1

Improvements

  • Previously, Takomo could not update a stack if its status was ROLLBACK_FAILED. Now, if Takomo encounters stacks with ROLLBACK_FAILED status, it attempts to delete the failed stack, and if that succeeds, proceeds to deploy the stack normally).

Bug fixes

  • Fix texts shown on confirm deployment targets operation prompt

v3.34.0

Improvements

v3.33.2

Small improvements.

v3.33.1

Features

New CLI command: list stacks in organization accounts

You can now use a new CLI command to list CloudFormation stacks from accounts that belong to your AWS organization.

List stacks from every account.

tkm org accounts list-stacks --config-set-type standard

List stacks from accounts that belong to the Root/Workload organizational unit.

tkm org accounts list-stacks ROOT/Workload --config-set-type standard

List all stacks from accounts 123456789012 and 210987654321

tkm org accounts list-stacks \
  -a 123456789012 210987654321 \
  --config-set-type standard

Choose which config set and command path to use when deploying stacks to accounts

Two new options added to CLI commands that deploy or undeploy stacks from accounts that belong to your AWS organization.

  • --config-set <config-set>

    • Include only this config set.

  • --command-path <command-path>

    • Include only this command path. Using this option requires that also --config-set is used.

These options are supported in the following commands:

v3.32.0

Improvements

  • Optimize deploying of stacks to minimize AWS API throttling that can occur in larger projects.

Bug fixes

v3.31.2

Improvements

v3.31.1

Improvements

  • Optimize loading of currently existing stacks to speed up the list stacks operation in larger projects.

v3.31.0

Features

New configuration property: Infer deployment target's name from its configuration file name

Bug fixes

  • Fix a bug that prevented stack groups to inherit custom validation schemas from their parent.

v3.30.0

Features

New configuration property: inheritTags

v3.29.0

Features

New hook: Checksum hook

Bug fixes

v3.28.0

Features

Skip stack deploy if a hook returns a skip signal

To indicate that the following stack operation should be skipped, you need to return an output object from your hook that contains skip: true.

hooks/my-skip-hook.js
const execute = (input) => {
  // Some logic that determines if the stack operations should be skipped
  const skipIsNeeded = isSkipNeeded() 

  return {
    skip: skipIsNeeded,
    success: true,
  }
}

// Hook provider that initializes the hook
module.exports = {
  type: "example",
  init: (props) => ({ execute })
}

Bug fixes

  • Fix a bug that caused stdout buffer to exceed when a shell command executed with the cmd hook produced large amounts of output to the stdout.

Released on 2021/11/20, ()

Released on 2021/11/05, ()

With the new secret parameter resolver, you can use secrets stored in Secrets Manager as inputs for your CloudFormation stacks ().

Read more from the .

Released on 2021/11/03, ()

Released on 2021/10/14, ()

It's now possible to make a Takomo project configuration file (takomo.yml) to inherit configuration from another file. Inheriting configuration becomes useful, for example, when you have a monorepo containing multiple Takomo projects, each having its own configuration and sharing some common properties with others. You can place the common properties in a parent file that others then inherit ().

Released on 2021/10/06, ()

You can now specify additional directories from where Takomo loads custom Handlebars helpers by providing one or more directory paths to the helpersDir property of Takomo project configuration. The paths can be either absolute or relative to the current project directory ().

Read more from the .

Released on 2021/09/29, ()

Fix a bug that caused the stacks deployment order to go wrong in some cases where there was inter-region dependencies between stacks, ().

Released on 2021/09/26, ()

Released on 2021/09/21, ()

You can now invoke , and commands with --expect-no-changes option which causes the operation to fail if at least one of the targeted stacks would have changes. This is useful, for example, if you have made some clean-up to your local configuration and want to make sure that you have not unintentionally introduced some infrastructure changes ().

Fix loading of stacks when the target regions has more than 100 stacks ().

Released on 2021/09/20, ()

Released on 2021/09/17, ()

Previously, Takomo could not update a stack if its status was UPDATE_ROLLBACK_FAILED. Now, if Takomo encounters stacks with UPDATE_ROLLBACK_FAILED status, it attempts to continue rollback, and if that succeeds, proceeds to update the stack normally ().

Released on 2021/09/15, ()

Released on 2021/09/12, ()

For more information, see the .

Released on 2021/08/26, ()

Fix bug that prevented recreating failed stacks that have termination protection enabled ().

Released on 2021/08/24, ()

Optimize loading of currently existing stacks to speed up commands: deploy stacks and detect stack drift ().

Released on 2021/08/23, ()

Released on 2021/08/17, ()

A new property inferDeploymentTargetNameFromFileName is now available in the configuration of the filesystem deployment target repository used to load deployment targets from the local filesystem. You can use it to instruct Takomo to infer deployment target names from their configuration files' names. Read more from the .

Released on 2021/08/16, ()

By default, stacks and stack groups inherit tags from their parent stack group. You can now disable this behaviour by setting inheritTags to false (). Read more from the .

Released on 2021/08/16, ()

You can use this new hook to calculate checksums from directories in your project. For example, suppose you have a lambda function with its source code located in some directory. In that case, you can calculate a checksum from the directory and all files located under it and use it to skip the lambda deployment if the sources have not changed. Read more form the .

Fix a bug that caused stdout buffer to exceed when a shell command executed with the cmd resolver produced large amounts of output to the stdout ().

Released on 2021/08/15, ()

You can now implement a custom hook to decide whether the following stack operation should be skipped (). For example, you might use this new feature to skip a stack update if your stack has a lambda function, but its source code has not changed.

Read how to implement custom hooks.

GitHub
GitHub
prune stacks command
#327
GitHub
GitHub
#317
docs
GitHub
GitHub
GitHub
#276
GitHub
#312
GitHub
GitHub
deploy stacks
deploy targets
bootstrap targets
#308
#307
GitHub
GitHub
#302
GitHub
GitHub
documentation
Deploy accounts
Undeploy accounts
Bootstrap accounts
Tear down accounts
GitHub
#293
GitHub
#288
GitHub
GitHub
docs
GitHub
#282
docs
GitHub
#279
GitHub
#254
here
#316
docs
docs