class DMSReplicationInstanceNotPublicRule
Public Instance Methods
audit_impl(cfn_model)
click to toggle source
# File lib/cfn-nag/custom_rules/DMSReplicationInstanceNotPublicRule.rb, line 20 def audit_impl(cfn_model) violating_replications = cfn_model.resources_by_type('AWS::DMS::ReplicationInstance').select do |replication| replication.publiclyAccessible.nil? || truthy?(replication.publiclyAccessible) end violating_replications.map(&:logical_resource_id) end
rule_id()
click to toggle source
# File lib/cfn-nag/custom_rules/DMSReplicationInstanceNotPublicRule.rb, line 16 def rule_id 'W91' end
rule_text()
click to toggle source
# File lib/cfn-nag/custom_rules/DMSReplicationInstanceNotPublicRule.rb, line 8 def rule_text 'Database Migration Service replication instances are public, property PubliclyAccessible should be set to false' end
rule_type()
click to toggle source
# File lib/cfn-nag/custom_rules/DMSReplicationInstanceNotPublicRule.rb, line 12 def rule_type Violation::WARNING end