Skip to content

Commit

Permalink
style: Terraform formatting changes [skip ci] [skip test]
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 1, 2025
1 parent b3beda0 commit 2fda0f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion github_deploy_keys.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ resource "tls_private_key" "deploy_key" {
for k, v in var.deploy_keys : k => v
if v.create == true
}

algorithm = "RSA"
rsa_bits = 4096
}
Expand Down
6 changes: 3 additions & 3 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -412,13 +412,13 @@ variable "github_pro_enabled" {
variable "deploy_keys" {
description = "List of SSH deploy keys to add to the repository"
type = list(object({
title = string
key = optional(string, "")
title = string
key = optional(string, "")
# The key is optional because it can be generated
# by the module itself if create is set to true
# and the key is not provided
read_only = optional(bool, true)
create = optional(bool, false)
create = optional(bool, false)
}))
default = []
}

0 comments on commit 2fda0f4

Please sign in to comment.