Skip to content

Commit

Permalink
Merge pull request #332 from kbalk/mock-ports
Browse files Browse the repository at this point in the history
Add moto-only support for additional services
  • Loading branch information
kbalk authored Nov 1, 2021
2 parents bdb8984 + 961e40a commit 63e3c17
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.19.0
current_version = 0.19.1
commit = True
message = Bumps version to {new_version}
tag = False
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

### 0.19.1

**Released**: 2021.11.01

**Commit Delta**: [Change from 0.19.0 release](https://github.com/plus3it/tardigrade-ci/compare/0.19.0..0.19.1)

**Summary**:

* Added moto-only services to mockstack.tf: Cloudtrail, Directory Service,
Route53 and Route53 Resolver.

* Updates tool versions:
* black 21.10b0
* cfn-lint 0.54.4
* terraform 1.0.10
* yq 4.14.1
* terragrunt 0.35.5

### 0.19.0

**Released**: 2021.10.25
Expand Down
7 changes: 5 additions & 2 deletions tests/terraform_pytest/mockstack.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ provider "aws" {
kinesis = "http://${var.mockstack_host}:${var.mockstack_port}"
kms = "http://${var.mockstack_host}:${var.mockstack_port}"
lambda = "http://${var.mockstack_host}:${var.mockstack_port}"
route53 = "http://${var.mockstack_host}:${var.mockstack_port}"
redshift = "http://${var.mockstack_host}:${var.mockstack_port}"
s3 = "http://${var.mockstack_host}:${var.mockstack_port}"
secretsmanager = "http://${var.mockstack_host}:${var.mockstack_port}"
Expand All @@ -29,6 +28,10 @@ provider "aws" {
stepfunctions = "http://${var.mockstack_host}:${var.mockstack_port}"
sts = "http://${var.mockstack_host}:${var.mockstack_port}"

firehose = "http://${var.mockstack_host}:${var.moto_port}"
cloudtrail = "http://${var.mockstack_host}:${var.moto_port}"
ds = "http://${var.mockstack_host}:${var.moto_port}"
firehose = "http://${var.mockstack_host}:${var.moto_port}"
route53 = "http://${var.mockstack_host}:${var.moto_port}"
route53resolver = "http://${var.mockstack_host}:${var.moto_port}"
}
}

0 comments on commit 63e3c17

Please sign in to comment.