Class: Terraforming::Resource::Subnet

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

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Util

#apply_template, #generate_tfstate, #name_from_tag, #normalize_module_name, #template_path

Constructor Details

#initialize(client) ⇒ Subnet

Returns a new instance of Subnet.



13
14
15
# File 'lib/terraforming/resource/subnet.rb', line 13

def initialize(client)
  @client = client
end

Class Method Details

.tf(client = Aws::EC2::Client.new) ⇒ Object



5
6
7
# File 'lib/terraforming/resource/subnet.rb', line 5

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

.tfstate(client = Aws::EC2::Client.new) ⇒ Object



9
10
11
# File 'lib/terraforming/resource/subnet.rb', line 9

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

Instance Method Details

#tfObject



17
18
19
# File 'lib/terraforming/resource/subnet.rb', line 17

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

#tfstateObject



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

def tfstate
  resources = subnets.inject({}) do |result, subnet|
    attributes = {
      "availability_zone" => subnet.availability_zone,
      "cidr_block" => subnet.cidr_block,
      "id" => subnet.subnet_id,
      "map_public_ip_on_launch" => subnet.map_public_ip_on_launch.to_s,
      "tags.#" => subnet.tags.length.to_s,
      "vpc_id" => subnet.vpc_id,
    }
    result["aws_subnet.#{module_name_of(subnet)}"] = {
      "type" => "aws_subnet",
      "primary" => {
        "id" => subnet.subnet_id,
        "attributes" => attributes
      }
    }

    result
  end

  generate_tfstate(resources)
end