forked from TrueCloudLab/certificates
Add SubscriptionIDs and ObjectIDs to provisioner-linkedca conversion functions
This commit is contained in:
parent
4a10f2c584
commit
b128e37090
1 changed files with 4 additions and 0 deletions
|
@ -706,6 +706,8 @@ func ProvisionerToCertificates(p *linkedca.Provisioner) (provisioner.Interface,
|
|||
Name: p.Name,
|
||||
TenantID: cfg.TenantId,
|
||||
ResourceGroups: cfg.ResourceGroups,
|
||||
SubscriptionIDs: cfg.SubscriptionIds,
|
||||
ObjectIDs: cfg.ObjectIds,
|
||||
Audience: cfg.Audience,
|
||||
DisableCustomSANs: cfg.DisableCustomSans,
|
||||
DisableTrustOnFirstUse: cfg.DisableTrustOnFirstUse,
|
||||
|
@ -865,6 +867,8 @@ func ProvisionerToLinkedca(p provisioner.Interface) (*linkedca.Provisioner, erro
|
|||
Azure: &linkedca.AzureProvisioner{
|
||||
TenantId: p.TenantID,
|
||||
ResourceGroups: p.ResourceGroups,
|
||||
SubscriptionIds: p.SubscriptionIDs,
|
||||
ObjectIds: p.ObjectIDs,
|
||||
Audience: p.Audience,
|
||||
DisableCustomSans: p.DisableCustomSANs,
|
||||
DisableTrustOnFirstUse: p.DisableTrustOnFirstUse,
|
||||
|
|
Loading…
Reference in a new issue