Growing with the SparkleFormation registry
03 Jun 2016Growing into SparkleFormation
In my continued usage with SparkleFormation I’m really growing to appreciate the convenience of having ruby available when composing templates. Things that would be challenging in a simplistic serialization format or lead to unmanageable duplication become easily solvable thanks to the powerful combination of an actual programming language, which json and yml are not, and the simplicity of the SparkleFormation DSL.
At it’s simplest you can mirror the structure of any cloudformation json (and finally have comments inline!) but you quickly discover more advanced use cases.
SparkleFormation registries
Registries are described as:
“lightweight dynamics that are useful for storing items that may be used in multiple locations. “
A dynamic in SparkleFormation is just a reusable block of code that generates some section of the template and can be very flexible. This is in comparison to components which are meant as single use items to insert a static block of code.
Registries and dynamics are similar in that they are just building blocks for composing the template elements for any declarative orchestration API such as CloudFormation or Azure Resource Manager, well any arbitrary json data structure really. Registries should be simpler and more static than a full fledged dynamic, useful for things like a list of AWS instance sizes as in the documentation:
or even something a little more involved like shared AWS::CloudFormation::Init
data.
A more dynamic registry for AWS cfn-init
Recently the need arose to provide a shared registry for the necessary init
commands to bootstrap a new ec2 instance with chef-client
. Since we deal with
both Windows and linux nodes in ec2 it would be a bit annoying to have to
declare different registries like
After a brief discussion on freenode irc #sparkleformation
,
@luckymike pointed me in the direction of a
technique he discovered that took advantage of the
cfn-init configsets
feature and the fact that registries can take args, just like any other
SparkleFormation dynamic.
Essentially, cloudformation init will look for an array of config names and run
them in order. This can be used in ruby to create an empty array called
default
and then conditionally append to the array based on parameters passed
to the registry dynamic.
Clearly some of the code has been left out. With a fully fleshed out dynamic
using this approach it can then be used in a template by passing :platform
as
a configuration element:
The intent of this reads much clearer in the template code and everything needed
for the :chef_client
registry is contained in the same block of code.
Another good example of this can be seen in the Sensu evaluation stack codebase. The RabbitMQ registry needed a generated password that is passed in as an argument when calling the registry in the stack template.
A simple example perhaps but this is exactly the type of thing that leads to better code reuse and eases management of complex definitions over the lifespan of any infrastructure as code workflow.