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: README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,8 @@ Deploy a docker compose project to a Google Cloud Compute Instance.
68
68
| <aname="input_project_id"></a> [project\_id](#input\_project\_id)| The GCP project ID |`string`| n/a | yes |
69
69
| <aname="input_project_number"></a> [project\_number](#input\_project\_number)| The GCP project number |`string`| n/a | yes |
70
70
| <aname="input_allowed_ips"></a> [allowed\_ips](#input\_allowed\_ips)| CIDR IP Addresses allowed to turn on this site's GCP instance |`list(string)`|`[]`| no |
71
+
| <aname="input_artifact_registry_location"></a> [artifact\_registry\_location](#input\_artifact\_registry\_location)| Artifact Registry location for var.artifact\_registry\_repository. |`string`|`"us"`| no |
72
+
| <aname="input_artifact_registry_repository"></a> [artifact\_registry\_repository](#input\_artifact\_registry\_repository)| Optional Artifact Registry repository name to grant the VM service account reader access to. Leave empty to skip creating the IAM binding. |`string`|`""`| no |
71
73
| <aname="input_allowed_ssh_ipv4"></a> [allowed\_ssh\_ipv4](#input\_allowed\_ssh\_ipv4)| CIDR IPv4 Addresses allowed to to SSH into this site's GCP instance |`list(string)`|`[]`| no |
72
74
| <aname="input_allowed_ssh_ipv6"></a> [allowed\_ssh\_ipv6](#input\_allowed\_ssh\_ipv6)| CIDR IPv6 Addresses allowed to SSH into this site's GCP instance |`list(string)`|`[]`| no |
73
75
| <aname="input_disk_size_gb"></a> [disk\_size\_gb](#input\_disk\_size\_gb)| Data disk size in GB |`number`|`50`| no |
Copy file name to clipboardExpand all lines: variables.tf
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -173,3 +173,15 @@ variable "initcmd" {
173
173
default=[]
174
174
description="Commands to run before /home/cloud-compose/run.sh"
175
175
}
176
+
177
+
variable"artifact_registry_repository" {
178
+
type=string
179
+
default=""
180
+
description="Optional Artifact Registry repository name to grant the VM service account reader access to. Leave empty to skip creating the IAM binding."
181
+
}
182
+
183
+
variable"artifact_registry_location" {
184
+
type=string
185
+
default="us"
186
+
description="Artifact Registry location for var.artifact_registry_repository."
0 commit comments