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
and then run `terraform init` and `terraform apply` to make the defined provider effect to the existing module state.
222
+
More details see [How to use provider in the module](https://www.terraform.io/docs/language/modules/develop/providers.html#passing-providers-explicitly)
Copy file name to clipboardExpand all lines: variables.tf
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,23 +1,23 @@
1
1
//Autoscaling group
2
2
variable"region" {
3
-
description="The region ID used to launch this module resources. If not set, it will be sourced from followed by ALICLOUD_REGION environment variable and profile."
3
+
description="(Deprecated from version 1.5.0)The region ID used to launch this module resources. If not set, it will be sourced from followed by ALICLOUD_REGION environment variable and profile."
4
4
type=string
5
5
default=""
6
6
}
7
7
8
8
variable"profile" {
9
-
description="The profile name as set in the shared credentials file. If not set, it will be sourced from the ALICLOUD_PROFILE environment variable."
9
+
description="(Deprecated from version 1.5.0)The profile name as set in the shared credentials file. If not set, it will be sourced from the ALICLOUD_PROFILE environment variable."
10
10
type=string
11
11
default=""
12
12
}
13
13
variable"shared_credentials_file" {
14
-
description="This is the path to the shared credentials file. If this is not set and a profile is specified, $HOME/.aliyun/config.json will be used."
14
+
description="(Deprecated from version 1.5.0)This is the path to the shared credentials file. If this is not set and a profile is specified, $HOME/.aliyun/config.json will be used."
15
15
type=string
16
16
default=""
17
17
}
18
18
19
19
variable"skip_region_validation" {
20
-
description="Skip static validation of region ID. Used by users of alternative AlibabaCloud-like APIs or users w/ access to regions that are not public (yet)."
20
+
description="(Deprecated from version 1.5.0)Skip static validation of region ID. Used by users of alternative AlibabaCloud-like APIs or users w/ access to regions that are not public (yet)."
0 commit comments