Class: Terraforming::Resource::S3

Inherits:
Object
  • Object
show all
Includes:
Util
Defined in:
lib/terraforming/resource/s3.rb

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Util

#apply_template, #name_from_tag, #normalize_module_name, #prettify_policy, #template_path

Constructor Details

#initialize(client) ⇒ S3

Returns a new instance of S3.



14
15
16
# File 'lib/terraforming/resource/s3.rb', line 14

def initialize(client)
  @client = client
end

Class Method Details

.tf(client: Aws::S3::Client.new) ⇒ Object



6
7
8
# File 'lib/terraforming/resource/s3.rb', line 6

def self.tf(client: Aws::S3::Client.new)
  self.new(client).tf
end

.tfstate(client: Aws::S3::Client.new) ⇒ Object



10
11
12
# File 'lib/terraforming/resource/s3.rb', line 10

def self.tfstate(client: Aws::S3::Client.new)
  self.new(client).tfstate
end

Instance Method Details

#tfObject



18
19
20
# File 'lib/terraforming/resource/s3.rb', line 18

def tf
  apply_template(@client, "tf/s3")
end

#tfstateObject



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/terraforming/resource/s3.rb', line 22

def tfstate
  buckets.inject({}) do |resources, bucket|
    bucket_policy = bucket_policy_of(bucket)
    resources["aws_s3_bucket.#{module_name_of(bucket)}"] = {
      "type" => "aws_s3_bucket",
      "primary" => {
        "id" => bucket.name,
        "attributes" => {
          "acl" => "private",
          "bucket" => bucket.name,
          "force_destroy" => "false",
          "id" => bucket.name,
          "policy" => bucket_policy ? bucket_policy.policy.read : "",
        }
      }
    }

    resources
  end
end