-
-
Notifications
You must be signed in to change notification settings - Fork 50
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
feat!: Added appsync visibility option, bump AWS provider version to 5.x #50
Conversation
@antonbabenko Kindly review this please 🙏🏻 |
variables.tf
Outdated
variable "visibility" { | ||
description = "The API visibility. Valid values: GLOBAL, PRIVATE." | ||
type = string | ||
default = "GLOBAL" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
default = "GLOBAL" | |
default = null |
variables.tf
Outdated
type = string | ||
default = "GLOBAL" | ||
|
||
validation { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this validation
block completely.
This PR is included in version 2.0.0 🎉 |
I'm going to lock this pull request because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems related to this change, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
Description
AWS added a feature to AppSync to allow creating private APIs (link to the article).
Corresponding to that a PR hashicorp merged into release 5.1.0 of terraform-provider-aws.
In my PR i have added the visibility option to the appsync module.
Motivation and Context
It adds a missing feature.
Breaking Changes
None.
How Has This Been Tested?
examples/*
to demonstrate and validate my change(s)examples/*
projectspre-commit run -a
on my pull request