Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
drewmullen committed Jul 14, 2021
1 parent aa5c5b9 commit 905cd4d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
13 changes: 0 additions & 13 deletions aws/resource_aws_storagegateway_smb_file_share_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1326,19 +1326,6 @@ resource "aws_storagegateway_smb_file_share" "test" {
`, rName)
}

func testAccAWSStorageGatewaySmbFileShareAuditDestinationDisabled(rName string) string {
return testAccAWSStorageGateway_SmbFileShare_GuestAccessBase(rName) + fmt.Sprintf(`
resource "aws_storagegateway_smb_file_share" "test" {
# Use GuestAccess to simplify testing
authentication = "GuestAccess"
gateway_arn = aws_storagegateway_gateway.test.arn
location_arn = aws_s3_bucket.test.arn
role_arn = aws_iam_role.test.arn
audit_destination_arn = ""
}
`)
}

func testAccAWSStorageGatewaySmbFileShareCacheAttributesConfig(rName string, timeout int) string {
return testAccAWSStorageGateway_SmbFileShare_GuestAccessBase(rName) + fmt.Sprintf(`
resource "aws_storagegateway_smb_file_share" "test" {
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/storagegateway_gateway.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ resource "aws_storagegateway_gateway" "example" {
smb_active_directory_settings {
domain_name = "corp.example.com"
password = "avoid-plaintext-passwords"
username = "Admin""
username = "Admin"
}
}
```
Expand Down

0 comments on commit 905cd4d

Please sign in to comment.