Skip to content

Commit

Permalink
fix(plugins): instance provider was missing annotation (#1604)
Browse files Browse the repository at this point in the history
  • Loading branch information
robfletcher authored Oct 16, 2020
1 parent c8b3a97 commit 71b73a5
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
package com.netflix.spinnaker.keel.api.ec2

import com.netflix.spinnaker.keel.api.schema.Discriminator

/**
* Extensible mechanism allowing for abstraction of details of the VM instance (e.g.
* [LaunchConfigurationSpec.instanceType], [LaunchConfigurationSpec.ebsOptimized], etc.)
*/
interface InstanceProvider {
@Discriminator
val type: String
}

0 comments on commit 71b73a5

Please sign in to comment.