Skip to content

Commit

Permalink
Fix typo in function name
Browse files Browse the repository at this point in the history
  • Loading branch information
sparshadotel committed Aug 28, 2019
1 parent d326ee2 commit 74d2dfa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion infrastructure/infrastructure.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ func InitializeFrontend() {
}
workspaceDir := filepath.Join("/tmp", frontendArgs.CLIENT_NAME)
utils.GenerateFrontendTemplateFile(frontend_architecture.InfrastructureTemplate, frontendArgs, workspaceDir)
utils.RunInfrastrucutreChanges(workspaceDir)
utils.RunInfrastructureChanges(workspaceDir)
}
2 changes: 1 addition & 1 deletion infrastructure/utils/terraform.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func getTerraformOutput(workspaceDir string) {
fmt.Println(aurora.Cyan(stdout.String()))
}

func RunInfrastrucutreChanges(workspaceDir string) {
func RunInfrastructureChanges(workspaceDir string) {
initTerraform(workspaceDir)
planTerraform(workspaceDir)
applyTerraform(workspaceDir)
Expand Down

0 comments on commit 74d2dfa

Please sign in to comment.