diff --git a/config/fulcio-config.yaml b/config/fulcio-config.yaml index ff4db5ddc..225656e04 100644 --- a/config/fulcio-config.yaml +++ b/config/fulcio-config.yaml @@ -38,6 +38,11 @@ data: "ClientID": "sigstore", "Type": "email" }, + "https://dev.gitlab.org": { + "IssuerURL": "https://dev.gitlab.org", + "ClientID": "sigstore", + "Type": "gitlab-pipeline" + }, "https://gitlab.archlinux.org": { "IssuerURL": "https://gitlab.archlinux.org", "ClientID": "sigstore", @@ -54,6 +59,11 @@ data: "Type": "email", "IssuerClaim": "$.federated_claims.connector_id" }, + "https://ops.gitlab.net": { + "IssuerURL": "https://ops.gitlab.net", + "ClientID": "sigstore", + "Type": "gitlab-pipeline" + }, "https://token.actions.githubusercontent.com": { "IssuerURL": "https://token.actions.githubusercontent.com", "ClientID": "sigstore", diff --git a/federation/dev.gitlab.org/config.yaml b/federation/dev.gitlab.org/config.yaml new file mode 100644 index 000000000..1fe70bccc --- /dev/null +++ b/federation/dev.gitlab.org/config.yaml @@ -0,0 +1,18 @@ +# Copyright 2023 The Sigstore Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +url: https://dev.gitlab.org +contact: distribution-be@gitlab.com +description: "GitLab OIDC tokens for job identity" +type: "gitlab-pipeline" diff --git a/federation/ops.gitlab.net/config.yaml b/federation/ops.gitlab.net/config.yaml new file mode 100644 index 000000000..7984c576f --- /dev/null +++ b/federation/ops.gitlab.net/config.yaml @@ -0,0 +1,18 @@ +# Copyright 2023 The Sigstore Authors +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +url: https://ops.gitlab.net +contact: distribution-be@gitlab.com +description: "GitLab OIDC tokens for job identity" +type: "gitlab-pipeline"