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: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,7 @@ module "my_instance" {
67
67
| <aname="input_security_group_id"></a> [security_group_id](#input_security_group_id)| ID of the security group the server is attached to. |`string`|`null`| no |
68
68
| <aname="input_state"></a> [state](#input_state)| State of the server. Default to 'started'. Possible values are: 'started', 'stopped' or 'standby'. |`string`|`"started"`| no |
69
69
| <aname="input_tags"></a> [tags](#input_tags)| Tags associated with the server and dedicated ip address. |`list(string)`|`[]`| no |
70
+
| <aname="input_user_data"></a> [user_data](#input_user_data)| User data associated with the server. Use the cloud-init key to use cloud-init on your instance. You can define values using: - string - UTF-8 encoded file content using file - Binary files using filebase64. |`any`|`null`| no |
70
71
| <aname="input_zone"></a> [zone](#input_zone)| The zone in which the instance should be created. Ressource will be created in the zone set at the provider level if null. |`string`|`null`| no |
Copy file name to clipboardExpand all lines: variables.tf
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -108,11 +108,11 @@ variable "state" {
108
108
}
109
109
}
110
110
111
-
#variable "user_data" {
112
-
#type = any
113
-
# description = "User data associated with the server. Use the cloud-init key to use cloud-init on your instance. You can define values using:\n- string\n- UTF-8 encoded file content using file\n- Binary files using filebase64."
114
-
#default = null
115
-
#}
111
+
variable"user_data" {
112
+
type=any
113
+
description="User data associated with the server. Use the cloud-init key to use cloud-init on your instance. You can define values using:\n- string\n- UTF-8 encoded file content using file\n- Binary files using filebase64."
0 commit comments