class TerraformDSL::AWS::Route53::PrivateZone
Attributes
domain[R]
name[R]
vpc[R]
Public Class Methods
new(name, domain, vpc)
click to toggle source
# File lib/terraformdsl/aws.rb, line 518 def initialize(name, domain, vpc) @name = name @domain = domain @vpc = vpc end
Public Instance Methods
Record(*a, &b)
click to toggle source
# File lib/terraformdsl/aws.rb, line 527 def Record(*a, &b); add_resource(Record.new(*a), &b); end
attr(attr)
click to toggle source
# File lib/terraformdsl/aws.rb, line 525 def attr(attr); "${aws_route53_zone.#{@name}.#{attr}}"; end