Sha256: e54a40a8445881341cb8fa304843f352b810c564d905f3edbc7b3eb35252cbab
Contents?: true
Size: 999 Bytes
Versions: 1
Compression:
Stored size: 999 Bytes
Contents
module Terraforming::Resource class S3 include Terraforming::Util def self.tf(client = Aws::S3::Client.new) self.new(client).tf end def self.tfstate(client = Aws::S3::Client.new) self.new(client).tfstate end def initialize(client) @client = client end def tf apply_template(@client, "tf/s3") end def tfstate resources = buckets.inject({}) do |result, bucket| result["aws_s3_bucket.#{module_name_of(bucket)}"] = { "type" => "aws_s3_bucket", "primary" => { "id" => bucket.name, "attributes" => { "acl" => "private", "bucket" => bucket.name, "id" => bucket.name } } } result end generate_tfstate(resources) end private def buckets @client.list_buckets.buckets end def module_name_of(bucket) normalize_module_name(bucket.name) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
terraforming-0.0.1 | lib/terraforming/resource/s3.rb |