Skip to content

Commit fefcbf9

Browse files
committed
Removes incorrect parameter
1 parent 2ede7bc commit fefcbf9

File tree

6 files changed

+0
-6
lines changed

6 files changed

+0
-6
lines changed

internal/service/appsync/testdata/GraphQLAPI/tags/main_gen.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
resource "aws_appsync_graphql_api" "test" {
55
authentication_type = "API_KEY"
66
name = var.rName
7-
visibility = var.rName
87

98
tags = var.resource_tags
109
}

internal/service/appsync/testdata/GraphQLAPI/tagsComputed1/main_gen.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ provider "null" {}
66
resource "aws_appsync_graphql_api" "test" {
77
authentication_type = "API_KEY"
88
name = var.rName
9-
visibility = var.rName
109

1110
tags = {
1211
(var.unknownTagKey) = null_resource.test.id

internal/service/appsync/testdata/GraphQLAPI/tagsComputed2/main_gen.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ provider "null" {}
66
resource "aws_appsync_graphql_api" "test" {
77
authentication_type = "API_KEY"
88
name = var.rName
9-
visibility = var.rName
109

1110
tags = {
1211
(var.unknownTagKey) = null_resource.test.id

internal/service/appsync/testdata/GraphQLAPI/tags_defaults/main_gen.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ provider "aws" {
1010
resource "aws_appsync_graphql_api" "test" {
1111
authentication_type = "API_KEY"
1212
name = var.rName
13-
visibility = var.rName
1413

1514
tags = var.resource_tags
1615
}

internal/service/appsync/testdata/GraphQLAPI/tags_ignore/main_gen.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ provider "aws" {
1313
resource "aws_appsync_graphql_api" "test" {
1414
authentication_type = "API_KEY"
1515
name = var.rName
16-
visibility = var.rName
1716

1817
tags = var.resource_tags
1918
}

internal/service/appsync/testdata/tmpl/graphql_api_tags.gtpl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ resource "aws_appsync_graphql_api" "test" {
22
{{- template "region" }}
33
authentication_type = "API_KEY"
44
name = var.rName
5-
visibility = var.rName
65

76
{{- template "tags" . }}
87
}

0 commit comments

Comments
 (0)