Skip to content
Snippets Groups Projects
tenant.pp 195 B
Newer Older
  • Learn to ignore specific revisions
  • define iaas::resources::tenant (
      $description,
      $enabled = true,
    ) {
      keystone_tenant { $name:
        ensure      => present,
        description => $description,
        enabled     => $enabled,
      }
    }