diff --git a/docs/modules/instance.md b/docs/modules/instance.md
index 2ba7737b..0630b91f 100644
--- a/docs/modules/instance.md
+++ b/docs/modules/instance.md
@@ -127,6 +127,7 @@ Manage Linode Instances, Configs, and Disks.
| `region` |
`str` | Optional | The location to deploy the instance in. See the [Linode API documentation](https://api.linode.com/v4/regions). |
| `image` | `str` | Optional | The image ID to deploy the instance disk from. **(Conflicts With: `disks`,`configs`)** |
| `authorized_keys` | `list` | Optional | A list of SSH public key parts to deploy for the root user. |
+| `authorized_users` | `list` | Optional | A list of usernames. |
| `root_pass` | `str` | Optional | The password for the root user. If not specified, one will be generated. This generated password will be available in the task success JSON. |
| `stackscript_id` | `int` | Optional | The ID of the StackScript to use when creating the instance. See the [Linode API documentation](https://techdocs.akamai.com/linode-api/reference/get-stack-scripts). |
| `stackscript_data` | `dict` | Optional | An object containing arguments to any User Defined Fields present in the StackScript used when creating the instance. Only valid when a stackscript_id is provided. See the [Linode API documentation](https://techdocs.akamai.com/linode-api/reference/get-stack-scripts). |
diff --git a/plugins/modules/instance.py b/plugins/modules/instance.py
index 3a7d5cda..da097020 100644
--- a/plugins/modules/instance.py
+++ b/plugins/modules/instance.py
@@ -351,6 +351,11 @@
"A list of SSH public key parts to deploy for the root user."
],
),
+ "authorized_users": SpecField(
+ type=FieldType.list,
+ element_type=FieldType.string,
+ description=["A list of usernames."],
+ ),
"root_pass": SpecField(
type=FieldType.string,
no_log=True,