Skip to content

Commit

Permalink
fix: add website file share to getjenkinsio storage account (#611)
Browse files Browse the repository at this point in the history
This PR recreates the file share deleted in
jenkins-infra/helpdesk#3917 (comment),
needed for the Core release process.

Ref:
- jenkins-infra/helpdesk#3927
  • Loading branch information
lemeurherve authored Jan 30, 2024
1 parent d1ab973 commit 62ed0dd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions get.jenkins.io.tf
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ resource "azurerm_storage_share" "get_jenkins_io" {
quota = 700 # 512.14GiB used (Begining 2024)
}

resource "azurerm_storage_share" "get_jenkins_io_website" {
name = "website"
storage_account_name = azurerm_storage_account.get_jenkins_io.name
quota = 50 # 1.6GiB used in 2020
}

data "azurerm_storage_account_sas" "get_jenkins_io" {
connection_string = azurerm_storage_account.get_jenkins_io.primary_connection_string
signed_version = "2022-11-02"
Expand Down

0 comments on commit 62ed0dd

Please sign in to comment.