Skip to content

Commit 0a30053

Browse files
fix: moved blocks (#126)
1 parent 5842dc7 commit 0a30053

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

modules/azure_devops/variable_group.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ resource "azuredevops_variable_group" "alz" {
2222
}
2323

2424
moved {
25-
from = "azuredevops_variable_group.example"
26-
to = "azuredevops_variable_group.alz[0]"
25+
from = azuredevops_variable_group.example
26+
to = azuredevops_variable_group.alz[0]
2727
}

modules/github/action_variables.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@ resource "github_actions_variable" "backend_azure_storage_account_container_name
4040
}
4141

4242
moved {
43-
from = "github_actions_variable.backend_azure_resource_group_name"
44-
to = "github_actions_variable.backend_azure_resource_group_name[0]"
43+
from = github_actions_variable.backend_azure_resource_group_name
44+
to = github_actions_variable.backend_azure_resource_group_name[0]
4545
}
4646

4747
moved {
48-
from = "github_actions_variable.backend_azure_storage_account_name"
49-
to = "github_actions_variable.backend_azure_storage_account_name[0]"
48+
from = github_actions_variable.backend_azure_storage_account_name
49+
to = github_actions_variable.backend_azure_storage_account_name[0]
5050
}
5151

5252
moved {
53-
from = "github_actions_variable.backend_azure_storage_account_container_name"
54-
to = "github_actions_variable.backend_azure_storage_account_container_name[0]"
53+
from = github_actions_variable.backend_azure_storage_account_container_name
54+
to = github_actions_variable.backend_azure_storage_account_container_name[0]
5555
}

0 commit comments

Comments
 (0)