class CFM::TwoAzTwoPublicSubnetAndPrivateSubnetVpcStub

Public Instance Methods

get_subnet_info() click to toggle source
# File lib/etude_for_aws/cfm/vpc/two_az_two_public_subnet_and_private_subnet_vpc.rb, line 41
def get_subnet_info
  info = {}
  info[:subnet_id] = 'DUMMY_SUBNET_ID'
  info[:az] = 'DUMMY_AZ'
  info
end
get_subnet_infos() click to toggle source
# File lib/etude_for_aws/cfm/vpc/two_az_two_public_subnet_and_private_subnet_vpc.rb, line 48
def get_subnet_infos
  infos = []
  infos << get_subnet_info
  infos << get_subnet_info
  infos
end