Skip to content

Commit c86b786

Browse files
committed
WIP
1 parent ae0751e commit c86b786

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

provisioner/terraform/resources.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ type agentAppAttributes struct {
7676
Share string `mapstructure:"share"`
7777
Subdomain bool `mapstructure:"subdomain"`
7878
Healthcheck []appHealthcheckAttributes `mapstructure:"healthcheck"`
79+
Order int64 `mapstructure:"order"`
7980
}
8081

8182
type agentEnvAttributes struct {
@@ -437,6 +438,7 @@ func ConvertState(modules []*tfjson.StateModule, rawGraph string) (*State, error
437438
Subdomain: attrs.Subdomain,
438439
SharingLevel: sharingLevel,
439440
Healthcheck: healthcheck,
441+
Order: attrs.Order,
440442
})
441443
}
442444
}

provisionersdk/proto/provisioner.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ message App {
168168
Healthcheck healthcheck = 7;
169169
AppSharingLevel sharing_level = 8;
170170
bool external = 9;
171-
int32 order = 10;
171+
int64 order = 10;
172172
}
173173

174174
// Healthcheck represents configuration for checking for app readiness.

0 commit comments

Comments
 (0)