Skip to content
This repository was archived by the owner on Mar 29, 2023. It is now read-only.

Commit f76056d

Browse files
authored
Merge pull request #27 from gruntwork-io/amazon-linux-fix
Fix AMI owner ID
2 parents ca71f30 + 116af6f commit f76056d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

examples/couchbase-ami/couchbase.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"type": "shell",
101101
"inline": [
102102
"sudo mkdir -p /opt/gruntwork",
103-
"git clone --branch v0.0.2 https://github.com/gruntwork-io/bash-commons.git /tmp/bash-commons",
103+
"git clone --branch v0.0.4 https://github.com/gruntwork-io/bash-commons.git /tmp/bash-commons",
104104
"sudo cp -r /tmp/bash-commons/modules/bash-commons/src /opt/gruntwork/bash-commons"
105105
]
106106
},{

examples/couchbase-cluster-mds/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ module "iam_policies_sync_gateway" {
448448

449449
data "aws_ami" "coubase_ubuntu_example" {
450450
most_recent = true
451-
owners = ["738755648600"] # Gruntwork
451+
owners = ["562637147889"] # Gruntwork
452452

453453
filter {
454454
name = "virtualization-type"

examples/couchbase-cluster-simple-dns-tls/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ data "aws_acm_certificate" "load_balancer" {
275275

276276
data "aws_ami" "coubase_ubuntu_example" {
277277
most_recent = true
278-
owners = ["738755648600"] # Gruntwork
278+
owners = ["562637147889"] # Gruntwork
279279

280280
filter {
281281
name = "virtualization-type"

examples/couchbase-multi-datacenter-replication/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ module "iam_policies_replica" {
326326

327327
data "aws_ami" "coubase_ubuntu_example_primary" {
328328
most_recent = true
329-
owners = ["738755648600"] # Gruntwork
329+
owners = ["562637147889"] # Gruntwork
330330

331331
filter {
332332
name = "virtualization-type"
@@ -353,7 +353,7 @@ data "aws_ami" "coubase_ubuntu_example_primary" {
353353

354354
data "aws_ami" "coubase_ubuntu_example_replica" {
355355
most_recent = true
356-
owners = ["738755648600"] # Gruntwork
356+
owners = ["562637147889"] # Gruntwork
357357

358358
filter {
359359
name = "virtualization-type"

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ module "iam_policies" {
230230

231231
data "aws_ami" "coubase_ubuntu_example" {
232232
most_recent = true
233-
owners = ["738755648600"] # Gruntwork
233+
owners = ["562637147889"] # Gruntwork
234234

235235
filter {
236236
name = "virtualization-type"

0 commit comments

Comments
 (0)