Skip to content

Commit

Permalink
mend small mistakes when manually resolving conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
jorrite committed Aug 5, 2024
1 parent b27bdc4 commit 2d40dc6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ module "additional_tfe_workspaces" {
clear_text_env_variables = each.value.clear_text_env_variables
clear_text_hcl_variables = each.value.clear_text_hcl_variables
clear_text_terraform_variables = each.value.clear_text_terraform_variables
description = each.value.description
execution_mode = coalesce(each.value.execution_mode, var.tfe_workspace.execution_mode)
file_triggers_enabled = each.value.connect_vcs_repo != false ? each.value.file_triggers_enabled : null
global_remote_state = each.value.global_remote_state
Expand Down
4 changes: 2 additions & 2 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ variable "tfe_workspace" {
username = optional(string, "TFEPipeline")
vcs_oauth_token_id = string
variable_set_ids = optional(map(string), {})
working_directory = optional(string, null)
workspace_tags = optional(list(string), null)
working_directory = optional(string)
workspace_tags = optional(list(string))

notification_configuration = optional(list(object({
destination_type = string
Expand Down

0 comments on commit 2d40dc6

Please sign in to comment.