We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2186111 commit 0a31267Copy full SHA for 0a31267
artifact_registry_repository_remote_apt/main.tf
@@ -1,15 +1,15 @@
1
resource "google_artifact_registry_repository" "my-repo" {
2
location = "us-central1"
3
- repository_id = "debian-buster-${local.name_suffix}"
+ repository_id = "debian-stable-${local.name_suffix}"
4
description = "example remote apt repository-${local.name_suffix}"
5
format = "APT"
6
mode = "REMOTE_REPOSITORY"
7
remote_repository_config {
8
- description = "Debian buster remote repository"
+ description = "Debian stable remote repository"
9
apt_repository {
10
public_repository {
11
repository_base = "DEBIAN"
12
- repository_path = "debian/dists/buster"
+ repository_path = "debian/dists/stable"
13
}
14
15
0 commit comments