https://github.com/cfryerdev/artillery-plugin-tls-cert-loader
Artillery.io Plugin that allows you to attach various forms of SSL
https://github.com/cfryerdev/artillery-plugin-tls-cert-loader
Last synced: 4 days ago
JSON representation
Artillery.io Plugin that allows you to attach various forms of SSL
- Host: GitHub
- URL: https://github.com/cfryerdev/artillery-plugin-tls-cert-loader
- Owner: cfryerdev
- License: mit
- Created: 2022-04-14T18:28:40.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-15T02:35:39.000Z (over 4 years ago)
- Last Synced: 2025-08-31T08:19:16.990Z (11 months ago)
- Language: JavaScript
- Size: 176 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Artillery.io Plugin: TLS Cert Loader
This plugin is intended to be used to attach tls cert files to requests. Should work with CERT, PFX, KEY, CA, and others.
Note: This plugin will take the plugin.config properties, load the files provided, and then append to the config.tls node with the same name. Anything already there will be replaced.
### How to add to your project
First off install the package...
```bash
npm i artillery-plugin-tls-cert-loader
```
Add the plugin to your artillery script and reference your file to load...
```bash
config:
tls:
rejectUnauthorized: false
plugins:
tls-cert-loader:
config:
pfx: "./path/to/file.pfx"
ca: "..."
cert: "..."
key: "..."
```
Thats it, run your script!