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
It's recommended to create multiple instances of this resource when updating a license. Modifying an existing licensewill cause the resource to be replaced, which may result in a brief unlicensed period.
7
+
It's recommended to set create_before_destroy https://developer.hashicorp.com/terraform/language/meta-arguments/lifecycle#create_before_destroy on license resources. Without setting this, Terraform will remove the old license before adding the updated license. This will result in a temporary disruption to your users; during which they may be unable to use features that require a license.
8
8
Terraform does not guarantee this resource will be created before other resources or attributes that require a licensed deployment. The depends_on meta-argument is instead recommended.
9
9
---
10
10
11
11
# coderd_license (Resource)
12
12
13
13
A license for a Coder deployment.
14
14
15
-
It's recommended to create multiple instances of this resource when updating a license. Modifying an existing licensewill cause the resource to be replaced, which may result in a brief unlicensed period.
15
+
It's recommended to set [`create_before_destroy`](https://developer.hashicorp.com/terraform/language/meta-arguments/lifecycle#create_before_destroy) on license resources. Without setting this, Terraform will remove the old license before adding the updated license. This will result in a temporary disruption to your users; during which they may be unable to use features that require a license.
16
16
17
17
Terraform does not guarantee this resource will be created before other resources or attributes that require a licensed deployment. The `depends_on` meta-argument is instead recommended.
0 commit comments