mirror of https://github.com/jenkins-infra/azure
feat(reports.jenkins.io) Track the reports.jenkins.io bucket as per helpdesk 3087 (#205)
* chore(shared-tools) bump to latest version Signed-off-by: Damien Duportal <damien.duportal@gmail.com> * docs(README) fix Asciidoctor titles Signed-off-by: Damien Duportal <damien.duportal@gmail.com> * chore(updatecli) update manifest for 0.33.x Signed-off-by: Damien Duportal <damien.duportal@gmail.com> * feat(reports.jenkins.io) track reports.jenkins.io bucket Signed-off-by: Damien Duportal <damien.duportal@gmail.com> * Apply suggestions from code review * Update reports.jenkins.io.tf Signed-off-by: Damien Duportal <damien.duportal@gmail.com> Co-authored-by: Hervé Le Meur <91831478+lemeurherve@users.noreply.github.com>pull/206/head
parent
b7fe7ac9e2
commit
1dc9b7bff1
@ -1 +1 @@
|
||||
Subproject commit 0c7b9909f841c41f3e02ef6360056c2933fdd47e
|
||||
Subproject commit 47481201b97bc4d7115eaaa7b18fb97797e5fad9
|
@ -0,0 +1,29 @@
|
||||
## This file contains the resources associated to the buckets used to store private and public reports
|
||||
resource "azurerm_resource_group" "prod_reports" {
|
||||
name = "prod-reports"
|
||||
location = var.location
|
||||
|
||||
tags = {
|
||||
scope = "terraform-managed"
|
||||
}
|
||||
}
|
||||
|
||||
resource "azurerm_storage_account" "prodjenkinsreports" {
|
||||
name = "prodjenkinsreports"
|
||||
resource_group_name = azurerm_resource_group.prod_reports.name
|
||||
location = azurerm_resource_group.prod_reports.location
|
||||
account_tier = "Standard"
|
||||
account_replication_type = "GRS"
|
||||
account_kind = "Storage"
|
||||
enable_https_traffic_only = true
|
||||
min_tls_version = "TLS1_2"
|
||||
|
||||
custom_domain {
|
||||
name = "reports.jenkins.io"
|
||||
use_subdomain = false
|
||||
}
|
||||
|
||||
tags = {
|
||||
scope = "terraform-managed"
|
||||
}
|
||||
}
|
Loading…
Reference in new issue