Multiple bundles in config file #90
Answered
by
anderseknert
ajeetmbr
asked this question in
OPA and Rego
-
Can anyone share a sample for configuration file with multiple bundles |
Beta Was this translation helpful? Give feedback.
Answered by
anderseknert
Dec 24, 2021
Replies: 1 comment 3 replies
-
Sure, it would look something like this. services:
- name: acmecorp
url: https://example.com/service/v1
credentials:
bearer:
token: "abc123"
bundles:
bundle1:
service: acmecorp
resource: somedir/bundle1.tar.gz
bundle2:
service: acmecorp
resource: somedir/bundle2.tar.gz You'll need to be careful when using different bundles though, and have the .manifest file in each bundle clearly define the roots owned by that bundle. In most cases it is better to simply use a single bundle. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
ajeetmbr
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sure, it would look something like this.
You'll need to be careful when using different bundles though, and have the .manifest file in each bundle clearly define the roots owned by that bundle. In most cases it is better to simply use a single bundle.