@spinnaker/amazon 0.12.1 → 0.12.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,38 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.12.5](https://github.com/spinnaker/deck/compare/@spinnaker/amazon@0.12.4...@spinnaker/amazon@0.12.5) (2022-01-12)
7
+
8
+ **Note:** Version bump only for package @spinnaker/amazon
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.12.4](https://github.com/spinnaker/deck/compare/@spinnaker/amazon@0.12.3...@spinnaker/amazon@0.12.4) (2021-12-11)
15
+
16
+ **Note:** Version bump only for package @spinnaker/amazon
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.12.3](https://github.com/spinnaker/deck/compare/@spinnaker/amazon@0.12.2...@spinnaker/amazon@0.12.3) (2021-12-08)
23
+
24
+ **Note:** Version bump only for package @spinnaker/amazon
25
+
26
+
27
+
28
+
29
+
30
+ ## [0.12.2](https://github.com/spinnaker/deck/compare/@spinnaker/amazon@0.12.1...@spinnaker/amazon@0.12.2) (2021-12-01)
31
+
32
+ **Note:** Version bump only for package @spinnaker/amazon
33
+
34
+
35
+
36
+
37
+
6
38
  ## [0.12.1](https://github.com/spinnaker/deck/compare/@spinnaker/amazon@0.12.0...@spinnaker/amazon@0.12.1) (2021-11-12)
7
39
 
8
40
  **Note:** Version bump only for package @spinnaker/amazon
@@ -31,7 +31,7 @@ export interface ILicenseConfig {
31
31
  export interface IMetadataOptions {
32
32
  httpEndpoint?: 'disabled' | 'enabled';
33
33
  httpPutResponseHopLimit?: number;
34
- httpsTokens?: 'required' | 'optional';
34
+ httpTokens?: 'required' | 'optional';
35
35
  state?: 'pending' | 'applied';
36
36
  }
37
37
  export interface INetworkInterface {
@@ -3,11 +3,20 @@ import type { IAmazonLaunchTemplate } from './IAmazonLaunchTemplate';
3
3
  import type { IScalingPolicyView } from './IAmazonScalingPolicy';
4
4
  import type { IScalingPolicy } from './IScalingPolicy';
5
5
  import type { ISuspendedProcess } from './IScalingProcess';
6
+ export interface IAmazonAsgTag {
7
+ key: string;
8
+ value: string;
9
+ propagateAtLaunch: boolean;
10
+ resourceId: string;
11
+ resourceType: string;
12
+ }
6
13
  export interface IAmazonAsg extends IAsg {
7
14
  availabilityZones: string[];
15
+ autoScalingGroupName: string;
8
16
  defaultCooldown: number;
9
17
  healthCheckType: string;
10
18
  healthCheckGracePeriod: number;
19
+ loadBalancerNames: string[];
11
20
  terminationPolicies: string[];
12
21
  enabledMetrics: Array<{
13
22
  metric: string;
@@ -15,6 +24,7 @@ export interface IAmazonAsg extends IAsg {
15
24
  vpczoneIdentifier?: string;
16
25
  suspendedProcesses?: ISuspendedProcess[];
17
26
  capacityRebalance?: boolean;
27
+ tags: IAmazonAsgTag[];
18
28
  }
19
29
  export interface IAmazonServerGroup extends IServerGroup {
20
30
  image?: any;