Method: Formatron::CloudFormation::Template::VPC#initialize

Defined in:
lib/formatron/cloud_formation/template/vpc.rb

#initialize(vpc:, external:, hosted_zone_name:, key_pair:, administrator_name:, administrator_password:, kms_key:, hosted_zone_id:, bucket:, name:, target:) ⇒ VPC

rubocop:disable Metrics/MethodLength rubocop:disable Metrics/ParameterLists



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/formatron/cloud_formation/template/vpc.rb', line 21

def initialize(
  vpc:,
  external:,
  hosted_zone_name:,
  key_pair:,
  administrator_name:,
  administrator_password:,
  kms_key:,
  hosted_zone_id:,
  bucket:,
  name:,
  target:
)
  @vpc = vpc
  @external = external
  @hosted_zone_name = hosted_zone_name
  @key_pair = key_pair
  @administrator_name = administrator_name
  @administrator_password = administrator_password
  @kms_key = kms_key
  @hosted_zone_id = hosted_zone_id
  @bucket = bucket
  @name = name
  @target = target
end