Files
hunfabric/blueprints/third-party-solutions/gitlab/ssl.tf
Julio Castillo 3af7e257d2 Add tflint to pipelines (#2220)
* Fix terraform_deprecated_index

https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.5.0/docs/rules/terraform_deprecated_index.md

* Fix terraform_deprecated_interpolation

Reference: https://github.com/terraform-linters/tflint-ruleset-terraform/blob/v0.5.0/docs/rules/terraform_deprecated_interpolation.md

* Fix more indexing

* Remove unused variable

* Enable TFLint for modules

* Add tflint config file

* Fix chdir

* Lint modules

* TFLint fixes

* TFLint

* Fixes binauthz README

* Fixes DNS response policy tests. Restores MIG outputs.

* Fixes other DNS response policy tests.

* Update tests for fast 2-e

* Moar fixed tests

---------

Co-authored-by: Simone Ruffilli <sruffilli@google.com>
2024-04-17 10:23:48 +02:00

108 lines
3.6 KiB
HCL

/**
* Copyright 2024 Google LLC
*
* 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.
*/
locals {
cert_subjects = [
{
country = "IT"
province = "Lombardy"
locality = "Milan"
organization = "Example"
organizational_unit = "Example"
}
]
}
#######################################################################
# GITLAB CA PRIVATE KEY #
#######################################################################
resource "tls_private_key" "gitlab_ca_private_key" {
count = local.self_signed_ssl_certs_required ? 1 : 0
algorithm = "RSA"
}
#######################################################################
# GITLAB CA CERT #
#######################################################################
resource "tls_self_signed_cert" "gitlab_ca_cert" {
count = local.self_signed_ssl_certs_required ? 1 : 0
private_key_pem = tls_private_key.gitlab_ca_private_key[0].private_key_pem
is_ca_certificate = true
dynamic "subject" {
for_each = toset(local.cert_subjects)
content {
country = subject.value.country
province = subject.value.province
locality = subject.value.locality
common_name = "Gitlab CA"
organization = subject.value.organization
organizational_unit = subject.value.organizational_unit
}
}
validity_period_hours = 43800 // 1825 days or 5 years
allowed_uses = [
"digital_signature",
"cert_signing",
"crl_signing",
]
}
#######################################################################
# SERVER CERT SIGNED BY CA #
#######################################################################
resource "tls_private_key" "gitlab_server_key" {
count = local.self_signed_ssl_certs_required ? 1 : 0
algorithm = "RSA"
}
# Create CSR for Gitlab Server certificate
resource "tls_cert_request" "gitlab_server_csr" {
count = local.self_signed_ssl_certs_required ? 1 : 0
private_key_pem = tls_private_key.gitlab_server_key[0].private_key_pem
dns_names = [var.gitlab_config.hostname]
dynamic "subject" {
for_each = toset(local.cert_subjects)
content {
country = subject.value.country
province = subject.value.province
locality = subject.value.locality
common_name = "Gitlab"
organization = subject.value.organization
organizational_unit = subject.value.organizational_unit
}
}
}
resource "tls_locally_signed_cert" "gitlab_server_singed_cert" {
count = local.self_signed_ssl_certs_required ? 1 : 0
cert_request_pem = tls_cert_request.gitlab_server_csr[0].cert_request_pem
ca_private_key_pem = tls_private_key.gitlab_ca_private_key[0].private_key_pem
ca_cert_pem = tls_self_signed_cert.gitlab_ca_cert[0].cert_pem
validity_period_hours = 43800
allowed_uses = [
"digital_signature",
"key_encipherment",
"server_auth",
"client_auth",
]
}