Sha256: 61f1d526bd33592a12e8d629ff113f06c3397514cc8f1001155866fdb8287e4b

Contents?: true

Size: 903 Bytes

Versions: 48

Compression:

Stored size: 903 Bytes

Contents

### exist

```ruby
describe route53_hosted_zone('example.com.') do
  it { should exist }
end
```

### have_record_set

```ruby
describe route53_hosted_zone('example.com.') do
  its(:resource_record_set_count) { should eq 6 }
  it { should have_record_set('example.com.') }
  it { should have_record_set('example.com.').type('a') }
  it { should have_record_set('example.com.').a('123.456.7.890') }
  it { should have_record_set('*.example.com.').cname('example.com') }
  it { should have_record_set('example.com.').mx('10 mail.example.com') }
  it { should have_record_set('mail.example.com.').a('123.456.7.890').ttl(3600) }
  ns = 'ns-123.awsdns-45.net.
ns-6789.awsdns-01.org.
ns-2345.awsdns-67.co.uk.
ns-890.awsdns-12.com.'
  it { should have_record_set('example.com.').ns(ns) }
  it { should have_record_set('s3.example.com.').alias('s3-website-us-east-1.amazonaws.com.', 'Z2ABCDEFGHIJKL') }
end
```

Version data entries

48 entries across 48 versions & 3 rubygems

Version Path
awspec-1.31.0 doc/_resource_types/route53_hosted_zone.md
awspec-1.30.0 doc/_resource_types/route53_hosted_zone.md
awspec-1.29.3 doc/_resource_types/route53_hosted_zone.md
awspec-1.29.2 doc/_resource_types/route53_hosted_zone.md
awspec-1.29.1 doc/_resource_types/route53_hosted_zone.md
awspec-1.29.0 doc/_resource_types/route53_hosted_zone.md
awspec-1.28.2 doc/_resource_types/route53_hosted_zone.md
awspec-1.28.1 doc/_resource_types/route53_hosted_zone.md
awspec-1.28.0 doc/_resource_types/route53_hosted_zone.md
awspec-1.27.1 doc/_resource_types/route53_hosted_zone.md
awspec-1.27.0 doc/_resource_types/route53_hosted_zone.md
awspec-1.26.0 doc/_resource_types/route53_hosted_zone.md
awspec-1.25.2 doc/_resource_types/route53_hosted_zone.md
awspec-1.25.1 doc/_resource_types/route53_hosted_zone.md
awspec-1.25.0 doc/_resource_types/route53_hosted_zone.md
awspec-1.24.4 doc/_resource_types/route53_hosted_zone.md
awspec-1.24.3 doc/_resource_types/route53_hosted_zone.md
awspec-1.24.2 doc/_resource_types/route53_hosted_zone.md
awspec-1.24.1 doc/_resource_types/route53_hosted_zone.md
awspec-1.24.0 doc/_resource_types/route53_hosted_zone.md