Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ class Rule < Resource
attribute :destination_group
attribute :source_group
attribute :source_group_owner
attribute :description

def render
{
Expand All @@ -94,6 +95,7 @@ def render
rule['DestinationSecurityGroupId'] = destination_group unless destination_group.nil?
rule['SourceSecurityGroupId'] = source_group unless source_group.nil?
rule['SourceSecurityGroupOwnerId'] = source_group_owner unless source_group_owner.nil?
rule['Description'] = description unless description.nil?
end
end
end
Expand Down