You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: "Can be 'public' or 'private'. If your organization is associated with an enterprise account using GitHub Enterprise Cloud or GitHub Enterprise Server 2.20+, visibility can also be 'internal'.",
65
66
},
67
+
// terraform-sdk-provider doesn't properly support tristate booleans: https://github.com/hashicorp/terraform-plugin-sdk/issues/817
68
+
// Using TypeString as the best alternative for now.
66
69
"fork": {
67
-
Type: schema.TypeBool,
70
+
Type: schema.TypeString,
68
71
Optional: true,
69
-
ForceNew: true,
72
+
Computed: true,
70
73
Description: "Set to 'true' to fork an existing repository.",
71
74
},
72
75
"source_owner": {
73
76
Type: schema.TypeString,
74
77
Optional: true,
75
-
ForceNew: true,
78
+
Computed: true,
76
79
Description: "The owner of the source repository to fork from.",
77
80
},
78
81
"source_repo": {
79
82
Type: schema.TypeString,
80
83
Optional: true,
81
-
ForceNew: true,
84
+
Computed: true,
82
85
Description: "The name of the source repository to fork from.",
0 commit comments