Class: Terraforming::Resource::VPNGateway

Inherits:
Object
  • Object
show all
Includes:
Util
Defined in:
lib/terraforming/resource/vpn_gateway.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) ⇒ VPNGateway

Returns a new instance of VPNGateway.



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

def initialize(client)
  @client = client
end

Class Method Details

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



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

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

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



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

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

Instance Method Details

#tfObject



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

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

#tfstateObject



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

def tfstate
  vpn_gateways.inject({}) do |resources, vpn_gateway|
    next resources if vpn_gateway.vpc_attachments.empty?

    attributes = {
      "id"     => vpn_gateway.vpn_gateway_id,
      "vpc_id" => vpn_gateway.vpc_attachments[0].vpc_id,
      "availability_zone" => vpn_gateway.availability_zone,
      "tags.#" => vpn_gateway.tags.length.to_s,
    }
    resources["aws_vpn_gateway.#{module_name_of(vpn_gateway)}"] = {
      "type" => "aws_vpn_gateway",
      "primary" => {
        "id"         => vpn_gateway.vpn_gateway_id,
        "attributes" => attributes
      }
    }

    resources
  end
end