Skip to content

Commit 73bdd5f

Browse files
committed
(CAT-1984) - Add forge auth to fixtures module install
Prior to this commit, users were unable to perform the install of modules which required forge authorization. This change introduces the ability to know install modules behind authorization, by referencing an env variable set by the user, and appending this onto the `puppet module install` operation if present.
1 parent 6e600d1 commit 73bdd5f

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,17 @@ When specifying the repo source of the fixture you have a few options as to whic
211211
puppet_version: '>= 6.0.0'
212212
```
213213

214+
Using Forge Authorization
215+
==============
216+
217+
In order to perform forge operations which required authorization, such as installing premium modules, you can export your forge api key as an environment variable in your terminal.
218+
219+
```bash
220+
FORGE_API_KEY='your_api_key'
221+
```
222+
223+
puppetlabs_spec_helper will then automatically append this key to all `puppet module install` requests when running `rake spec_prep`.
224+
214225
**Notes:**
215226

216227
* `ref` and `branch` can be used together to get a specific revision on a specific branch

lib/puppetlabs_spec_helper/tasks/fixtures.rb

+3
Original file line numberDiff line numberDiff line change
@@ -379,6 +379,9 @@ def download_module(remote, opts)
379379
flags = " #{opts['flags']}" if opts['flags']
380380
end
381381

382+
forge_token = ENV.fetch('FORGE_API_KEY', nil)
383+
flags += " --forge_authorization \"Bearer #{forge_token}\"" if forge_token
384+
382385
return false if File.directory?(target) && (ref.empty? || opts['ref'] == module_version(target))
383386

384387
# The PMT cannot handle multi threaded runs due to cache directory collisons

0 commit comments

Comments
 (0)