Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion ecspresso.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,15 @@ func (d *App) newServiceFromTypes(ctx context.Context, in types.Service) (*Servi
return aws.ToString(dp.Status) == "PRIMARY"
})
if sv.isCodeDeploy() {
// CodeDeploy does not support ServiceConnectConfiguration and VolumeConfigurations
// CodeDeploy does not support
// - ServiceConnectConfiguration
// - VolumeConfigurations
// - DeploymentConfiguration.Alarms
sv.ServiceConnectConfiguration = nil
sv.VolumeConfigurations = nil
if sv.DeploymentConfiguration != nil {
sv.DeploymentConfiguration.Alarms = nil
}
return &sv, nil
}
if len(dps) == 0 {
Expand Down