Sha256: b7a4cf5111419aa92b8f3aa6fcbc89ab70a867b2c7d9e5fab280dfc924b7d86c

Contents?: true

Size: 1.69 KB

Versions: 1

Compression:

Stored size: 1.69 KB

Contents

#
# Author:: Matt Ray (<matt@getchef.com>)
# Copyright:: Copyright (c) 2013-2014 Chef Software, 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.security_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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
knife-openstack-0.10.0 lib/chef/knife/openstack_group_list.rb