Class: Terrafying::Components::Instance

Inherits:
Terrafying::Context
  • Object
show all
Includes:
Usable
Defined in:
lib/terrafying/components/instance.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Usable

#egress_security_group, #ingress_security_group, #path_mtu_setup!, #pingable_by, #pingable_by_cidr, #security_group, #used_by, #used_by_cidr

Constructor Details

#initializeInstance

Returns a new instance of Instance.



23
24
25
# File 'lib/terrafying/components/instance.rb', line 23

def initialize
  super
end

Instance Attribute Details

#idObject (readonly)

Returns the value of attribute id.



11
12
13
# File 'lib/terrafying/components/instance.rb', line 11

def id
  @id
end

#ip_addressObject (readonly)

Returns the value of attribute ip_address.



11
12
13
# File 'lib/terrafying/components/instance.rb', line 11

def ip_address
  @ip_address
end

#nameObject (readonly)

Returns the value of attribute name.



11
12
13
# File 'lib/terrafying/components/instance.rb', line 11

def name
  @name
end

#subnetObject (readonly)

Returns the value of attribute subnet.



11
12
13
# File 'lib/terrafying/components/instance.rb', line 11

def subnet
  @subnet
end

Class Method Details

.create_in(vpc, name, options = {}) ⇒ Object



15
16
17
# File 'lib/terrafying/components/instance.rb', line 15

def self.create_in(vpc, name, options = {})
  Instance.new.create_in vpc, name, options
end

.find_in(vpc, name) ⇒ Object



19
20
21
# File 'lib/terrafying/components/instance.rb', line 19

def self.find_in(vpc, name)
  Instance.new.find_in vpc, name
end

Instance Method Details

#create_in(vpc, name, options = {}) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# File 'lib/terrafying/components/instance.rb', line 31

def create_in(vpc, name, options = {})
  options = {
    public: false,
    eip: false,
    instance_type: 't3a.micro',
    instance_profile: nil,
    ports: [],
    tags: {},
    security_groups: [],
    depends_on: []
  }.merge(options)

  ident = "#{tf_safe(vpc.name)}-#{name}"

  @name = name
  @ports = enrich_ports(options[:ports])

  @security_group = resource :aws_security_group, ident,
                             name: "instance-#{ident}",
                             description: "Describe the ingress and egress of the instance #{ident}",
                             tags: options[:tags],
                             vpc_id: vpc.id,
                             egress: [
                               {
                                 from_port: 0,
                                 to_port: 0,
                                 protocol: -1,
                                 cidr_blocks: ['0.0.0.0/0']
                               }
                             ]

  path_mtu_setup!

  lifecycle = if options.key? :ip_address
                {
                  lifecycle: { create_before_destroy: false }
                }
              else
                {
                  lifecycle: { create_before_destroy: true }
                }
              end

  if options.key? :subnet
    @subnet = options[:subnet]
  else
    subnets = options.fetch(:subnets, vpc.subnets[:private])
    # pick something consistent but not just the first subnet
    subnet_index = XXhash.xxh32(ident) % subnets.count
    @subnet = subnets[subnet_index]
  end

  associate_public_ip_address = options[:eip] || options[:public]

  @id = resource :aws_instance, ident, {
    ami: options[:ami],
    instance_type: options[:instance_type],
    iam_instance_profile: profile_from(options[:instance_profile]),
    subnet_id: @subnet.id,
    associate_public_ip_address: associate_public_ip_address,
    root_block_device: {
      volume_type: 'gp2',
      volume_size: 32
    },
    tags: {
      'Name' => ident
    }.merge(options[:tags]),
    vpc_security_group_ids: [
      vpc.internal_ssh_security_group
    ].push(*options[:security_groups]),
    user_data: options[:user_data],
    lifecycle: {
      create_before_destroy: true
    },
    depends_on: options[:depends_on]
  }.merge(options[:ip_address] ? { private_ip: options[:ip_address] } : {}).merge(lifecycle)

  @ip_address = @id[options[:public] ? :public_ip : :private_ip]

  if options[:eip]
    @eip = resource :aws_eip, ident, {
      instance: @id,
      vpc: true
    }
    @ip_address = @eip[:public_ip]
  end

  self
end

#find_in(_vpc, _name) ⇒ Object



27
28
29
# File 'lib/terrafying/components/instance.rb', line 27

def find_in(_vpc, _name)
  raise 'unimplemented'
end

#profile_from(profile) ⇒ Object



121
122
123
# File 'lib/terrafying/components/instance.rb', line 121

def profile_from(profile)
  profile.respond_to?(:id) ? profile.id : profile
end