Skip to content

Commit

Permalink
Fixed some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
mcasperson committed Jul 27, 2024
1 parent 1c210eb commit eb88883
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/steps/modules/space_management/terraform.tf
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ resource "octopusdeploy_aws_account" "account_aws_account" {
resource "octopusdeploy_azure_service_principal" "account_azure" {
count = var.terraform_backend == "Azure Storage" ? 1 : 0
description = "Octoterra Azure Account"
name = "Azure"
name = "Octoterra Azure Account"
environments = []
tenants = []
tenanted_deployment_participation = "TenantedOrUntenanted"
Expand Down
2 changes: 2 additions & 0 deletions internal/steps/project_export.go
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,7 @@ func (s ProjectExportStep) Execute(prompt func(string, string, func(bool)), hand
return
} else {
status("🔵 Terraform apply succeeded (" + fmt.Sprint(index) + " / " + fmt.Sprint(len(allProjects)) + ")")
fmt.Println(stdout.String() + stderr.String())
}

// link the library variable set
Expand All @@ -328,6 +329,7 @@ func (s ProjectExportStep) Execute(prompt func(string, string, func(bool)), hand
}

handleSuccess("🟢 Added runbooks to all projects")

}

func (s ProjectExportStep) getProjects(myclient *client.Client) ([]*projects.Project, error) {
Expand Down
2 changes: 1 addition & 1 deletion internal/steps/space_export.go
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ func (s SpaceExportStep) Execute(prompt func(string, string, func(bool)), handle
deleteAccountFunc := func(b bool) {
if b {
if err := s.deleteAccount(myclient, azureAccount); err != nil {
if err := s.renameAccount(myclient, awsAccount); err != nil {
if err := s.renameAccount(myclient, azureAccount); err != nil {
fmt.Println(err.Error())
}
}
Expand Down

0 comments on commit eb88883

Please sign in to comment.