Skip to content

Commit

Permalink
fix shown property of the resource security group rule is error
Browse files Browse the repository at this point in the history
  • Loading branch information
baixinsui committed Nov 23, 2023
1 parent 930c81a commit 4bca043
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public Map<String, String> getResourceProperties() {
map.put("ethertype", "ethertype");
map.put("protocol", "protocol");
map.put("remote_ip_prefix", "remote_ip_prefix");
map.put("port_range_min", "remote_ip_prefix");
map.put("port_range_min", "port_range_min");
map.put("port_range_max", "port_range_max");
return map;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ public Map<String, String> getResourceProperties() {
map.put("ethertype", "ethertype");
map.put("protocol", "protocol");
map.put("remote_ip_prefix", "remote_ip_prefix");
map.put("port_range_min", "remote_ip_prefix");
map.put("port_range_min", "port_range_min");
map.put("port_range_max", "port_range_max");
return map;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public Map<String, String> getResourceProperties() {
map.put("ethertype", "ethertype");
map.put("protocol", "protocol");
map.put("remote_ip_prefix", "remote_ip_prefix");
map.put("port_range_min", "remote_ip_prefix");
map.put("port_range_min", "port_range_min");
map.put("port_range_max", "port_range_max");
return map;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ public Map<String, String> getResourceProperties() {
map.put("ethertype", "ethertype");
map.put("protocol", "protocol");
map.put("remote_ip_prefix", "remote_ip_prefix");
map.put("port_range_min", "remote_ip_prefix");
map.put("port_range_min", "port_range_min");
map.put("port_range_max", "port_range_max");
return map;
}
Expand Down

0 comments on commit 4bca043

Please sign in to comment.