-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial addition of generated Image to Terraform. (#1121)
Merged PR #1121.
- Loading branch information
1 parent
5bb14aa
commit 70f9a9b
Showing
13 changed files
with
161 additions
and
564 deletions.
There are no files selected for viewing
Submodule ansible
updated
2 files
+48 −5 | lib/ansible/modules/cloud/google/gcp_compute_image.py | |
+11 −0 | lib/ansible/modules/cloud/google/gcp_compute_image_facts.py |
Submodule terraform
updated
from 74013c to 692d36
Submodule terraform-beta
updated
from 90b5ff to 248772
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
resource "google_compute_image" "example" { | ||
name = "<%= ctx[:vars]['image_name'] %>" | ||
|
||
raw_disk { | ||
source = "https://storage.googleapis.com/bosh-cpi-artifacts/bosh-stemcell-3262.4-google-kvm-ubuntu-trusty-go_agent-raw.tar.gz" | ||
} | ||
} |
Oops, something went wrong.