Skip to content

Commit 0a31267

Browse files
Fix artifactRegistryRepositoryRemoteAptExample test + update docs (#14523) (#1049)
[upstream:53ecb8c87a0cb1eb406b6bdb64ddb85f4f7bb942] Signed-off-by: Modular Magician <[email protected]>
1 parent 2186111 commit 0a31267

File tree

1 file changed

+3
-3
lines changed
  • artifact_registry_repository_remote_apt

1 file changed

+3
-3
lines changed

artifact_registry_repository_remote_apt/main.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
resource "google_artifact_registry_repository" "my-repo" {
22
location = "us-central1"
3-
repository_id = "debian-buster-${local.name_suffix}"
3+
repository_id = "debian-stable-${local.name_suffix}"
44
description = "example remote apt repository-${local.name_suffix}"
55
format = "APT"
66
mode = "REMOTE_REPOSITORY"
77
remote_repository_config {
8-
description = "Debian buster remote repository"
8+
description = "Debian stable remote repository"
99
apt_repository {
1010
public_repository {
1111
repository_base = "DEBIAN"
12-
repository_path = "debian/dists/buster"
12+
repository_path = "debian/dists/stable"
1313
}
1414
}
1515
}

0 commit comments

Comments
 (0)