We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3be047 commit 3aea666Copy full SHA for 3aea666
provisioner/terraform/resources_test.go
@@ -1066,6 +1066,12 @@ func sortResources(resources []*proto.Resource) {
1066
sort.Slice(agent.Apps, func(i, j int) bool {
1067
return agent.Apps[i].Slug < agent.Apps[j].Slug
1068
})
1069
+ sort.Slice(agent.ExtraEnvs, func(i, j int) bool {
1070
+ return agent.ExtraEnvs[i].Name < agent.ExtraEnvs[j].Name
1071
+ })
1072
+ sort.Slice(agent.Scripts, func(i, j int) bool {
1073
+ return agent.Scripts[i].DisplayName < agent.Scripts[j].DisplayName
1074
1075
}
1076
sort.Slice(resource.Agents, func(i, j int) bool {
1077
return resource.Agents[i].Name < resource.Agents[j].Name
0 commit comments