class TerraformDSL::AWS::Route53::Zone

Attributes

domain[R]
name[R]

Public Class Methods

new(name, domain) click to toggle source
# File lib/terraformdsl/aws.rb, line 503
def initialize(name, domain)
  @name = name
  @domain = domain
end

Public Instance Methods

Record(*a, &b) click to toggle source
# File lib/terraformdsl/aws.rb, line 511
def Record(*a, &b); add_resource(Record.new(*a), &b); end
attr(attr) click to toggle source
# File lib/terraformdsl/aws.rb, line 509
def attr(attr); "${aws_route53_zone.#{@name}.#{attr}}"; end