File tree 3 files changed +9
-5
lines changed
3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,7 @@ please refer to the man pages of `terraform --help`.
47
47
48
48
## Change Log
49
49
50
+ * v0.15: Update endpoint overrides for Terraform AWS provider 5.22.0
50
51
* v0.14: Add support to multi-account environments
51
52
* v0.13: Fix S3 automatic ` use_s3_path_style ` detection when setting S3_HOSTNAME or LOCALSTACK_HOSTNAME
52
53
* v0.12: Fix local endpoint overrides for Terraform AWS provider 5.9.0; fix parsing of alias and region defined as value lists
Original file line number Diff line number Diff line change @@ -75,23 +75,26 @@ def create_provider_config_file(provider_aliases=None):
75
75
provider_aliases = provider_aliases or []
76
76
77
77
# maps services to be replaced with alternative names
78
+ # skip services which do not have equivalent endpoint overrides
79
+ # see https://registry.terraform.io/providers/hashicorp/aws/latest/docs/guides/custom-service-endpoints
78
80
service_replaces = {
79
81
"apigatewaymanagementapi" : "" ,
82
+ "appconfigdata" : "" ,
80
83
"ce" : "costexplorer" ,
84
+ "dynamodbstreams" : "" ,
81
85
"edge" : "" ,
82
86
"emrserverless" : "" ,
83
87
"iotdata" : "" ,
84
- "iotjobsdata" : "" ,
85
- "logs" : "cloudwatchlogs" ,
86
- "timestream" : "" ,
87
- "dynamodbstreams" : "" ,
88
88
"ioteventsdata" : "" ,
89
+ "iotjobsdata" : "" ,
89
90
"iotwireless" : "" ,
91
+ "logs" : "cloudwatchlogs" ,
90
92
"mediastoredata" : "" ,
91
93
"qldbsession" : "" ,
92
94
"rdsdata" : "" ,
93
95
"sagemakerruntime" : "" ,
94
96
"support" : "" ,
97
+ "timestream" : "" ,
95
98
"timestreamquery" : "" ,
96
99
}
97
100
# service names to be excluded (not yet available in TF)
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = terraform-local
3
- version = 0.14
3
+ version = 0.15
4
4
url = https://github.com/localstack/terraform-local
5
5
author = LocalStack Team
6
6
You can’t perform that action at this time.
0 commit comments