Skip to content

Commit

Permalink
Merge pull request #9 from np5/20240709_add_1pwd
Browse files Browse the repository at this point in the history
Add 1pwd
  • Loading branch information
whoami-np5 authored Jul 9, 2024
2 parents 43fdc26 + ce4dd84 commit 0284a00
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions monolith_apps_sub_manifest.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
resource "zentral_monolith_sub_manifest" "apps" {
name = "Mandatory apps"
description = "The mandatory apps for our standard macOS client"
}

resource "zentral_monolith_sub_manifest_pkg_info" "onepassword" {
sub_manifest_id = zentral_monolith_sub_manifest.apps.id
key = "managed_installs"
pkg_info_name = "1Password"
}
5 changes: 5 additions & 0 deletions monolith_manifests.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,8 @@ resource "zentral_monolith_manifest_sub_manifest" "default-agents" {
manifest_id = zentral_monolith_manifest.default.id
sub_manifest_id = zentral_monolith_sub_manifest.agents.id
}

resource "zentral_monolith_manifest_sub_manifest" "default-apps" {
manifest_id = zentral_monolith_manifest.default.id
sub_manifest_id = zentral_monolith_sub_manifest.apps.id
}

0 comments on commit 0284a00

Please sign in to comment.