Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

r/appsync_datasource - http authorization + rdbms source #22411

Merged
merged 12 commits into from
Jan 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .changelog/22411.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
```release-note:enhancement
resource/aws_appsync_datasource: Add `delta_sync_config` and `versioned` to the `dynamodb_config` configuration block
```

```release-note:enhancement
resource/aws_appsync_datasource: Add `authorization_config` attribute to the `http_config` configuration block
```

```release-note:enhancement
resource/aws_appsync_datasource: Add plan time validation for `service_role_arn` and `lambda_config.function_arn`
```

```release-note:enhancement
resource/aws_appsync_datasource: Add `relational_database_config` argument
```
3 changes: 3 additions & 0 deletions internal/service/appsync/appsync_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ func TestAccAppSync_serial(t *testing.T) {
"type": testAccAppSyncDataSource_type,
"Type_dynamoDB": testAccAppSyncDataSource_Type_dynamoDB,
"Type_http": testAccAppSyncDataSource_Type_http,
"Type_http_auth": testAccAppSyncDataSource_Type_http_auth,
"Type_lambda": testAccAppSyncDataSource_Type_lambda,
"Type_none": testAccAppSyncDataSource_Type_none,
"Type_rdbms": testAccAppsyncDatasource_Type_RelationalDatabase,
"Type_rdbms_options": testAccAppsyncDatasource_Type_RelationalDatabaseWithOptions,
},
"GraphQLAPI": {
"basic": testAccAppSyncGraphQLAPI_basic,
Expand Down
Loading