We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9df8425 commit 80667d7Copy full SHA for 80667d7
main.tf
@@ -71,7 +71,7 @@ resource "github_repository" "this" {
71
}
72
73
lifecycle {
74
- prevent_destroy = true
+ # prevent_destroy = true
75
ignore_changes = [
76
auto_init,
77
has_issues,
outputs.tf
@@ -3,6 +3,11 @@ output "instance" {
3
value = github_repository.this
4
5
6
+output "name" {
7
+ description = "output name repository"
8
+ value = github_repository.this.name
9
+}
10
+
11
output "secrets" {
12
description = "output instance github actions secrets"
13
value = github_actions_secret.this
0 commit comments