-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathreports.jenkins.io.tf
More file actions
41 lines (38 loc) · 1.4 KB
/
reports.jenkins.io.tf
File metadata and controls
41 lines (38 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
resource "azurerm_resource_group" "reports_jenkins_io" {
name = "reports-jenkins-io"
location = var.location
tags = {
scope = "terraform-managed"
}
}
## trusted.ci.jenkins.io and infra.ci.jenkins.io are using the Storage Account Key to read and write
resource "azurerm_storage_account" "reports_jenkins_io" {
name = "reportsjenkinsio"
resource_group_name = azurerm_resource_group.reports_jenkins_io.name
location = azurerm_resource_group.reports_jenkins_io.location
account_tier = "Standard"
account_replication_type = "ZRS"
account_kind = "StorageV2"
https_traffic_only_enabled = true
min_tls_version = "TLS1_2"
network_rules {
default_action = "Deny"
virtual_network_subnet_ids = concat(
[
# Required for using the resource
data.azurerm_subnet.publick8s.id,
],
# Required for populating the resource from infra-reports
local.app_subnets["infra.ci.jenkins.io"].agents,
# Required for populating the resource from coretaglib and RPU
local.app_subnets["trusted.ci.jenkins.io"].agents,
)
bypass = ["AzureServices"]
}
tags = local.default_tags
}
resource "azurerm_storage_share" "reports_jenkins_io" {
name = "reports-jenkins-io"
storage_account_id = azurerm_storage_account.reports_jenkins_io.id
quota = 5
}