Skip to content

Commit e945369

Browse files
authored
Merge pull request #229 from awslabs/v1.1.2
v1.1.2 release
2 parents 4ef16b6 + 713ea4a commit e945369

File tree

28 files changed

+318
-187
lines changed

28 files changed

+318
-187
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ All notable changes to this project are documented in this file.
55
Based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.2] - 2021-11-03
9+
10+
### Added
11+
12+
- Amazon OpenSearch Service to discovery process Config queries.
13+
14+
### Changed
15+
16+
- Limiting the date pickers to select dates in the past. To limit confusion around the cost data Perspective displays.
17+
18+
### Fixed
19+
20+
- Fixed permissions errors preventing in-place upgrades.
21+
- Fixed a bug causing Amazon Elasticsearch Service costs to be missed out when calculating estimated workload costs (https://github.com/awslabs/aws-perspective/issues/216).
22+
- Fixed a bug causing cost query date not to update in the overview component.
23+
824
## [1.1.1] - 2021-09-28
925

1026
### Added

deployment/perspective-setup.yaml

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,7 @@ Resources:
419419
- apigateway:POST
420420
- apigateway:PUT
421421
- apigateway:PATCH
422+
- apigateway:DELETE
422423
Resource:
423424
- !Sub arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${PerspectiveWebRestAPI}/*
424425
- !Sub arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${ServerGremlinAPI}/*
@@ -503,6 +504,7 @@ Resources:
503504
- glue:CreateDatabase
504505
- glue:CreateTable
505506
- glue:CreateCrawler
507+
- glue:UpdateCrawler
506508
Resource: !Sub 'arn:aws:glue:${AWS::Region}:${AWS::AccountId}:*'
507509
LambdaSetup:
508510
Metadata:
@@ -1097,6 +1099,11 @@ Resources:
10971099

10981100

10991101
WebUIBucket:
1102+
Metadata:
1103+
cfn_nag:
1104+
rules_to_suppress:
1105+
- id: W51
1106+
reason: This bucket will get a policy attached to it from another template during deployment.
11001107
Type: AWS::S3::Bucket
11011108
Properties:
11021109
PublicAccessBlockConfiguration:
@@ -1127,23 +1134,6 @@ Resources:
11271134
IndexDocument: index.html
11281135
ErrorDocument: error.html
11291136

1130-
WebUIBucketPolicy:
1131-
Type: AWS::S3::BucketPolicy
1132-
Properties:
1133-
Bucket: !Ref WebUIBucket
1134-
PolicyDocument:
1135-
Statement:
1136-
- Sid: HttpsOnly
1137-
Action: '*'
1138-
Effect: Deny
1139-
Resource:
1140-
- !Sub arn:aws:s3:::${WebUIBucket}/*
1141-
- !Sub arn:aws:s3:::${WebUIBucket}
1142-
Principal: '*'
1143-
Condition:
1144-
Bool:
1145-
'aws:SecureTransport': 'false'
1146-
11471137
AmplifyStorageBucket:
11481138
Type: AWS::S3::Bucket
11491139
Properties:

source/backend/discovery/package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/backend/discovery/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@supercharge/promise-pool": "1.5.0",
2121
"adm-zip": "0.4.13",
2222
"async-retry": "1.3.1",
23-
"aws-sdk": "2.611.0",
23+
"aws-sdk": "2.1031.0",
2424
"aws4": "1.8.0",
2525
"axios": "0.21.2",
2626
"bottleneck": "2.19.5",

source/backend/discovery/src/discovery/discovery-service.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ class DiscoveryService {
5252
"AWS::AutoScaling::AutoScalingGroup",
5353
"AWS::EC2::NatGateway",
5454
"AWS::Elasticsearch::Domain",
55+
"AWS::OpenSearch::Domain",
5556
"AWS::KMS::Key",
5657
"AWS::CodeBuild::Project",
5758
"AWS::CodePipeline::Pipeline",

0 commit comments

Comments
 (0)