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
Copy file name to clipboardExpand all lines: variables.tf
+7-12Lines changed: 7 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -2,26 +2,21 @@ variable "ssh_key_pair" {
2
2
description="SSH key pair to be provisioned on instance"
3
3
}
4
4
5
-
variable"github_api_token" {
6
-
description="GitHub API token"
7
-
default=""
5
+
variable"associate_public_ip_address" {
6
+
description="Associate a public ip address with the creating instance"
7
+
default="true"
8
8
}
9
9
10
-
variable"github_organization" {
11
-
description="GitHub organization name"
10
+
variable"user_data" {
11
+
description="The user data to provide when launching the instance. Do not pass gzip-compressed data via this argument"
12
12
default=""
13
13
}
14
14
15
-
variable"github_team" {
16
-
description="GitHub team"
15
+
variable"user_data_base64" {
16
+
description=" Can be used instead of user_data to pass base64-encoded binary data directly. Use this instead of user_data whenever the value is not a valid UTF-8 string."
17
17
default=""
18
18
}
19
19
20
-
variable"associate_public_ip_address" {
21
-
description="Associate a public ip address with the creating instance"
0 commit comments