Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(get.jenkins.io) correct SA parameter to allow creation #607

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions get.jenkins.io.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ resource "azurerm_resource_group" "get_jenkins_io" {
}

resource "azurerm_storage_account" "get_jenkins_io" {
name = "getjenkinsio"
resource_group_name = azurerm_resource_group.get_jenkins_io.name
location = azurerm_resource_group.get_jenkins_io.location
account_tier = "Premium"
account_replication_type = "ZRS"
min_tls_version = "TLS1_2" # default value, needed for tfsec
name = "getjenkinsio"
resource_group_name = azurerm_resource_group.get_jenkins_io.name
location = azurerm_resource_group.get_jenkins_io.location

account_tier = "Premium"
account_kind = "FileStorage"
access_tier = "Hot"
account_replication_type = "ZRS"
min_tls_version = "TLS1_2" # default value, needed for tfsec
infrastructure_encryption_enabled = true

tags = local.default_tags

Expand Down