cloud_former 0.1.8 → 0.1.9
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3274b2370b044eee18344353bac664ff2cc832e
|
4
|
+
data.tar.gz: e55680d31b2cef03f98ed25ae17e6c7ce8c24ca6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c303d677cc846697aaa85e352e38f88eef20d029eee3e481e27304648ec021609a5e5110fce700e56a4daeaa485e0e6a644d6d0a08042df4d161be7ce9a93b3
|
7
|
+
data.tar.gz: a95636b5b928afb2525733fa7fc533726d271c9191df63c09d7639c3f036586a1b5bcb1c5ab5da8b99cac75d9f67a70a15164da2c082614632bead6a780ba3d4
|
@@ -3,7 +3,7 @@ module CloudFormer
|
|
3
3
|
module RDS
|
4
4
|
class DBSecurityGroup < Resource
|
5
5
|
aws_property :ec2_vpc_id, name: 'EC2VpcId', type: String
|
6
|
-
aws_property :db_security_group_ingress, list: true, embed: true, type: SecurityGroupRule
|
6
|
+
aws_property :db_security_group_ingress, name: 'DBSecurityGroupIngress', list: true, embed: true, type: SecurityGroupRule
|
7
7
|
aws_property :group_description, type: String
|
8
8
|
aws_property :tags, list: true, embed: true, type: CloudFormation::ResourceTag
|
9
9
|
end
|
data/lib/cloud_former/version.rb
CHANGED