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
* Licensed under the Apache License, Version 2.0 (the "License");
5
+
* you may not use this file except in compliance with the License.
6
+
* You may obtain a copy of the License at
7
+
*
8
+
* http://www.apache.org/licenses/LICENSE-2.0
9
+
*
10
+
* Unless required by applicable law or agreed to in writing, software
11
+
* distributed under the License is distributed on an "AS IS" BASIS,
12
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+
* See the License for the specific language governing permissions and
14
+
* limitations under the License.
15
+
*/
16
+
17
+
variable"project_id" {
18
+
description="The GCP project you want to enable APIs on"
19
+
type=string
20
+
}
21
+
22
+
variable"enable_apis" {
23
+
description="Whether to actually enable the APIs. If false, this module is a no-op."
24
+
default=true
25
+
type=bool
26
+
}
27
+
28
+
variable"disable_services_on_destroy" {
29
+
description="Whether project services will be disabled when the resources are destroyed. https://www.terraform.io/docs/providers/google/r/google_project_service.html#disable_on_destroy"
30
+
default=false
31
+
type=bool
32
+
}
33
+
34
+
variable"disable_dependent_services" {
35
+
description="Whether services that are enabled and which depend on this service should also be disabled when this service is destroyed. https://www.terraform.io/docs/providers/google/r/google_project_service.html#disable_dependent_services"
0 commit comments