Skip to content

Commit 0fa638b

Browse files
Apply suggestions from code review
Co-authored-by: Sören Martius <[email protected]>
1 parent d50bacb commit 0fa638b

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2323

2424
### Fixed
2525

26-
- Remove support for Terraform Github Provider v3.1.0 as this version introduced undocumneted breaking changes. See https://github.com/integrations/terraform-provider-github/issues/566 for details.
26+
- Remove support for Terraform Github Provider v3.1.0 as this version introduced undocumented breaking changes. See https://github.com/integrations/terraform-provider-github/issues/566 for details.
2727

2828
### Changed
2929

test/public-repository-with-secret/outputs.tf

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,11 @@ output "repository" {
44
}
55

66
output "repository_name" {
7-
description = "The full name of the created repository"
7+
description = "The full name of the created repository."
88
value = module.repository.full_name
99
}
1010

1111
output "secret_name" {
12-
description = "Secret name"
12+
description = "The name of the secret."
1313
value = module.repository.secrets[0]
1414
}
15-

test/public-repository-with-secret/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ variable "name" {
2323
}
2424

2525
variable "secret_name" {
26-
description = "Secret name"
26+
description = "The name of the secret."
2727
type = string
2828
default = "MYSECRET"
2929
}
3030

3131
variable "secret_text" {
32-
description = "Secret value in plain text"
32+
description = "Secret value in plain text."
3333
type = string
3434
default = "42"
3535
}

0 commit comments

Comments
 (0)