Skip to content

Commit

Permalink
Add DisableSSHCAUser and DisableSSHCAHost options to linkedca GCP pro…
Browse files Browse the repository at this point in the history
…visioner
  • Loading branch information
dopey committed Oct 26, 2024
1 parent 88443dd commit ecebd97
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions authority/provisioners.go
Original file line number Diff line number Diff line change
Expand Up @@ -955,6 +955,8 @@ func ProvisionerToCertificates(p *linkedca.Provisioner) (provisioner.Interface,
ProjectIDs: cfg.ProjectIds,
DisableCustomSANs: cfg.DisableCustomSans,
DisableTrustOnFirstUse: cfg.DisableTrustOnFirstUse,
DisableSSHCAUser: cfg.DisableSSHCAUser,

Check failure on line 958 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / govulncheck / govulncheck

cfg.DisableSSHCAUser undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAUser)

Check failure on line 958 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / lint / lint

cfg.DisableSSHCAUser undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAUser)

Check failure on line 958 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / lint / lint

cfg.DisableSSHCAUser undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAUser)

Check failure on line 958 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / build / build (stable)

cfg.DisableSSHCAUser undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAUser)

Check failure on line 958 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / build / build (oldstable)

cfg.DisableSSHCAUser undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAUser)

Check failure on line 958 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (stable)

cfg.DisableSSHCAUser undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAUser)

Check failure on line 958 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (stable)

cfg.DisableSSHCAUser undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAUser)

Check failure on line 958 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (oldstable)

cfg.DisableSSHCAUser undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAUser)

Check failure on line 958 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (oldstable)

cfg.DisableSSHCAUser undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAUser)
DisableSSHCAHost: cfg.DisableSSHCAHost,

Check failure on line 959 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / govulncheck / govulncheck

cfg.DisableSSHCAHost undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAHost)

Check failure on line 959 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / lint / lint

cfg.DisableSSHCAHost undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAHost)

Check failure on line 959 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / lint / lint

cfg.DisableSSHCAHost undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAHost)

Check failure on line 959 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / build / build (stable)

cfg.DisableSSHCAHost undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAHost)

Check failure on line 959 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / build / build (oldstable)

cfg.DisableSSHCAHost undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAHost)

Check failure on line 959 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (stable)

cfg.DisableSSHCAHost undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAHost)

Check failure on line 959 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (stable)

cfg.DisableSSHCAHost undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAHost)

Check failure on line 959 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (oldstable)

cfg.DisableSSHCAHost undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAHost)

Check failure on line 959 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (oldstable)

cfg.DisableSSHCAHost undefined (type *linkedca.GCPProvisioner has no field or method DisableSSHCAHost)
InstanceAge: instanceAge,
Claims: claims,
Options: options,
Expand Down Expand Up @@ -1095,6 +1097,8 @@ func ProvisionerToLinkedca(p provisioner.Interface) (*linkedca.Provisioner, erro
ProjectIds: p.ProjectIDs,
DisableCustomSans: p.DisableCustomSANs,
DisableTrustOnFirstUse: p.DisableTrustOnFirstUse,
DisableSSHCAUser: p.DisableSSHCAUser,

Check failure on line 1100 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / govulncheck / govulncheck

unknown field DisableSSHCAUser in struct literal of type linkedca.GCPProvisioner

Check failure on line 1100 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / lint / lint

unknown field DisableSSHCAUser in struct literal of type linkedca.GCPProvisioner

Check failure on line 1100 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / lint / lint

unknown field DisableSSHCAUser in struct literal of type linkedca.GCPProvisioner

Check failure on line 1100 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / build / build (stable)

unknown field DisableSSHCAUser in struct literal of type linkedca.GCPProvisioner

Check failure on line 1100 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / build / build (oldstable)

unknown field DisableSSHCAUser in struct literal of type linkedca.GCPProvisioner

Check failure on line 1100 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (stable)

unknown field DisableSSHCAUser in struct literal of type linkedca.GCPProvisioner

Check failure on line 1100 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (stable)

unknown field DisableSSHCAUser in struct literal of type linkedca.GCPProvisioner

Check failure on line 1100 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (oldstable)

unknown field DisableSSHCAUser in struct literal of type linkedca.GCPProvisioner

Check failure on line 1100 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (oldstable)

unknown field DisableSSHCAUser in struct literal of type linkedca.GCPProvisioner
DisableSSHCAHost: p.DisableSSHCAHost,

Check failure on line 1101 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / govulncheck / govulncheck

unknown field DisableSSHCAHost in struct literal of type linkedca.GCPProvisioner

Check failure on line 1101 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / lint / lint

unknown field DisableSSHCAHost in struct literal of type linkedca.GCPProvisioner) (typecheck)

Check failure on line 1101 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / lint / lint

unknown field DisableSSHCAHost in struct literal of type linkedca.GCPProvisioner) (typecheck)

Check failure on line 1101 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / build / build (stable)

unknown field DisableSSHCAHost in struct literal of type linkedca.GCPProvisioner

Check failure on line 1101 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / build / build (oldstable)

unknown field DisableSSHCAHost in struct literal of type linkedca.GCPProvisioner

Check failure on line 1101 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (stable)

unknown field DisableSSHCAHost in struct literal of type linkedca.GCPProvisioner

Check failure on line 1101 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (stable)

unknown field DisableSSHCAHost in struct literal of type linkedca.GCPProvisioner

Check failure on line 1101 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (oldstable)

unknown field DisableSSHCAHost in struct literal of type linkedca.GCPProvisioner

Check failure on line 1101 in authority/provisioners.go

View workflow job for this annotation

GitHub Actions / ci / test / test (oldstable)

unknown field DisableSSHCAHost in struct literal of type linkedca.GCPProvisioner
InstanceAge: p.InstanceAge.String(),
},
},
Expand Down

0 comments on commit ecebd97

Please sign in to comment.