# # Author:: Matt Ray () # Copyright:: Copyright (c) 2013 Opscode, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require 'chef/knife/openstack_base' class Chef class Knife class OpenstackGroupList < Knife include Knife::OpenstackBase banner "knife openstack group list (options)" def run validate! group_list = [ ui.color('Name', :bold), ui.color('Protocol', :bold), ui.color('From', :bold), ui.color('To', :bold), ui.color('CIDR', :bold), ui.color('Description', :bold), ] connection.security_groups.sort_by(&:name).each do |group| group.rules.each do |rule| unless rule['ip_protocol'].nil? group_list << group.name group_list << rule['ip_protocol'] group_list << rule['from_port'].to_s group_list << rule['to_port'].to_s group_list << rule['ip_range']['cidr'] group_list << group.description end end end puts ui.list(group_list, :uneven_columns_across, 6) end end end end