Puppet Class: profile::netops::ripeatlas::cli

Defined in:
modules/profile/manifests/netops/ripeatlas/cli.pp

Overview

SPDX-License-Identifier: Apache-2.0 Interact with ripe atlas API from command line

Parameters:

  • http_proxy (String) (defaults to: lookup('http_proxy'))


3
4
5
6
7
8
9
# File 'modules/profile/manifests/netops/ripeatlas/cli.pp', line 3

class profile::netops::ripeatlas::cli (
    String $http_proxy = lookup('http_proxy'),
) {
    class { 'netops::ripeatlas::cli':
        http_proxy => $http_proxy,
    }
}