-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
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,6 @@ | ||
# Access Offers can be imported by using the Offer URL as in the juju show-offers output. | ||
# Example: | ||
# $juju show-offer mysql | ||
# Store URL Access Description Endpoint Interface Role | ||
# mycontroller admin/db.mysql admin MariaDB Server is one of the most ... mysql mysql provider | ||
$ terraform import juju_access_offer.db admin/db.mysql |
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,4 @@ | ||
resource "juju_access_offer" "this" { | ||
offer_url = juju_offer.my_application_offer.url | ||
consume = [juju_user.dev.name] | ||
} |