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: examples/mig/autoscaler/README.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,13 +12,11 @@ group with an autoscaler.
12
12
| autoscaling\_cpu | Autoscaling, cpu utilization policy block as single element array. https://www.terraform.io/docs/providers/google/r/compute_autoscaler.html#cpu_utilization| list | n/a | yes |
13
13
| autoscaling\_enabled | Creates an autoscaler for the managed instance group | string | n/a | yes |
14
14
| credentials\_path | The path to the GCP credentials JSON file | string | n/a | yes |
15
-
| labels | Labels, provided as a map | map | n/a | yes |
16
15
| min\_replicas | The minimum number of replicas that the autoscaler can scale down to. This cannot be less than 0. | string | n/a | yes |
17
16
| project\_id | The GCP project to use for integration tests | string | n/a | yes |
18
17
| region | The GCP region to create and test resources in | string | n/a | yes |
19
18
| service\_account | Service account email address and scopes | map | n/a | yes |
20
19
| subnetwork | The subnetwork to host the compute instances in | string | n/a | yes |
21
-
| tags | Network tags, provided as a list | list | n/a | yes |
Copy file name to clipboardExpand all lines: examples/mig/simple/README.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,12 +10,10 @@ managed instance group.
10
10
| Name | Description | Type | Default | Required |
11
11
|------|-------------|:----:|:-----:|:-----:|
12
12
| credentials\_path | The path to the GCP credentials JSON file | string | n/a | yes |
13
-
| labels | Labels, provided as a map | map | n/a | yes |
14
13
| project\_id | The GCP project to use for integration tests | string | n/a | yes |
15
14
| region | The GCP region to create and test resources in | string | n/a | yes |
16
15
| service\_account | Service account email address and scopes | map | n/a | yes |
17
16
| subnetwork | The subnetwork to host the compute instances in | string | n/a | yes |
18
-
| tags | Network tags, provided as a list | list | n/a | yes |
19
17
| target\_size | The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. | string | n/a | yes |
Copy file name to clipboardExpand all lines: modules/instance_template/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ See the [simple](examples/instance_template/simple) for a usage example.
26
26
| metadata | Metadata, provided as a map | map |`<map>`| no |
27
27
| name\_prefix | Name prefix for the instance template | string |`"default-instance-template"`| no |
28
28
| network | The name or self_link of the network to attach this interface to. Use network attribute for Legacy or Auto subnetted networks and subnetwork for custom subnetted networks. | string |`""`| no |
29
-
| service\_account | Service account email address and scopes| map | n/a | yes |
29
+
| service\_account | Service account to attach to the instance. See https://www.terraform.io/docs/providers/google/r/compute_instance_template.html#service_account.| map | n/a | yes |
30
30
| source\_image | Source disk image. If neither source_image nor source_image_family is specified, defaults to the latest public CentOS image. | string |`""`| no |
31
31
| source\_image\_family | Source image family. If neither source_image nor source_image_family is specified, defaults to the latest public CentOS image. | string |`""`| no |
32
32
| source\_image\_project | Project where the source image comes from | string |`""`| no |
Copy file name to clipboardExpand all lines: modules/mig/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ See the [simple](examples/mig/simple) for a usage example.
33
33
| instance\_template | Instance template self_link used to create compute instances | string | n/a | yes |
34
34
| max\_replicas | The maximum number of instances that the autoscaler can scale up to. This is required when creating or updating an autoscaler. The maximum number of replicas should not be lower than minimal number of replicas. | string |`"10"`| no |
35
35
| min\_replicas | The minimum number of replicas that the autoscaler can scale down to. This cannot be less than 0. | string |`"2"`| no |
36
-
| named\_ports | Named name and named port | list |`<list>`| no |
36
+
| named\_ports | Named name and named port. https://cloud.google.com/load-balancing/docs/backend-service#named_ports| list |`<list>`| no |
37
37
| network | Network to deploy to. Only one of network or subnetwork should be specified. | string |`""`| no |
38
38
| region | The GCP region where the managed instance group resides. | string | n/a | yes |
39
39
| subnetwork | Subnet to deploy to. Only one of network or subnetwork should be specified. | string |`""`| no |
Copy file name to clipboardExpand all lines: modules/project_services/README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,4 +25,19 @@ terraform apply tfplan
25
25
26
26
[^]: (autogen_docs_start)
27
27
28
+
## Inputs
29
+
30
+
| Name | Description | Type | Default | Required |
31
+
|------|-------------|:----:|:-----:|:-----:|
32
+
| activate\_apis | The list of apis to activate within the project | list |`<list>`| no |
33
+
| disable\_services\_on\_destroy | 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| string |`"true"`| no |
34
+
| enable\_apis | Whether to actually enable the APIs. If false, this module is a no-op. | string |`"true"`| no |
35
+
| project\_id | The GCP project you want to enable APIs on | string | n/a | yes |
36
+
37
+
## Outputs
38
+
39
+
| Name | Description |
40
+
|------|-------------|
41
+
| project\_id | The GCP project you want to enable APIs on |
0 commit comments