作者:moquan | 来源:互联网 | 2023-08-06 10:15
Supportingthecreationofappsyncapikey.Eitheraspecificdateornumberofdays.
Supporting the creation of appsync api key. Either a specific date or number of days.
resource "aws_appsync_graphql_api" "example" {
authentication_type = "API_KEY"
name = "example"
}
resource "aws_appsync_api_key" "ex1" {
appsync_api_id = "${aws_appsync_graphql_api.example.id}"
validity_period_days = 364
}
resource "aws_appsync_api_key" "ex2" {
appsync_api_id = "${aws_appsync_graphql_api.example.id}"
valid_till_date = "30/11/2018"
}
该提问来源于开源项目:terraform-providers/terraform-provider-aws
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you feel this issue should be reopened, we encourage creating a new issue linking back to this one for added context. Thanks!