Sha256: e089ef76a65a2e5d31f1503e3859033662f74bde35aea88403779e01a55083f8
Contents?: true
Size: 1.03 KB
Versions: 4
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true require 'aws_cft_tools/version' ## # = AWS CloudFormation Tools # # A collection of classes and methods to manage AWS Infrastructure using CloudFormation as the fundamental # unit of infrastructure state. Aws::Cft supports JSON, YAML, and DSL templates with minimal decoration # to establish dependencies between templates. # # == Command Line Interface # # A CLI is provided through the +aws-cft+ command that will run any of the "runbooks" under the # +AwsCftTools::Runbooks::+ namespace. # # To find a complete list of subcommands, run +aws-cft --help+. # module AwsCftTools require 'aws_cft_tools/errors' require 'aws_cft_tools/aws_enumerator' require 'aws_cft_tools/change' require 'aws_cft_tools/deletion_change' require 'aws_cft_tools/client' require 'aws_cft_tools/dependency_tree' require 'aws_cft_tools/threaded_output' require 'aws_cft_tools/stack' require 'aws_cft_tools/template' require 'aws_cft_tools/template_set' require 'aws_cft_tools/runbook' require 'aws_cft_tools/runbooks' end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
aws-cft-tools-0.1.4 | lib/aws_cft_tools.rb |
aws-cft-tools-0.1.3 | lib/aws_cft_tools.rb |
aws-cft-tools-0.1.2 | lib/aws_cft_tools.rb |
aws-cft-tools-0.1.1 | lib/aws_cft_tools.rb |