Sha256: 8ebfacef3a3ab338697a88f3514856dd594ea0087c3c8fa214cbcf321b97d607

Contents?: true

Size: 1.01 KB

Versions: 8

Compression:

Stored size: 1.01 KB

Contents

### first

```ruby
describe rds_global_cluster('my-rds-global-cluster') do
  its(:engine) { should eq 'aurora-mysql' }
  its(:engine_version) { should eq '5.7.mysql_aurora.2.10.2' }
  its(:database_name) { should eq 'example_db' }
  its(:storage_encrypted) { should eq false }
  its(:deletion_protection) { should eq false }
end
```

### exist

```ruby
describe rds_global_cluster('my-rds-global-cluster') do
  it { should exist }
end
```

### be_available, be_creating, be_deleting

```ruby
describe rds_global_cluster('my-rds-global-cluster') do
  it { should be_available }
end
```

### have_cluster_member

```ruby
describe rds_global_cluster('my-rds-global-cluster') do
  it { should have_cluster_member('arn:aws:rds:ap-northeast-1:123456789012:cluster:my-primary-cluster') }
  it { should have_cluster_member('arn:aws:rds:ap-northeast-1:123456789012:cluster:my-primary-cluster').is_writer(true) }
  it { should have_cluster_member('arn:aws:rds:ap-northeast-3:123456789012:cluster:my-secondary-cluster').is_writer(false) }
end
```

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
awspec-1.30.0 doc/_resource_types/rds_global_cluster.md
awspec-1.29.3 doc/_resource_types/rds_global_cluster.md
awspec-1.29.2 doc/_resource_types/rds_global_cluster.md
awspec-1.29.1 doc/_resource_types/rds_global_cluster.md
awspec-1.29.0 doc/_resource_types/rds_global_cluster.md
awspec-1.28.2 doc/_resource_types/rds_global_cluster.md
awspec-1.28.1 doc/_resource_types/rds_global_cluster.md
awspec-1.28.0 doc/_resource_types/rds_global_cluster.md