{"id":20676297,"url":"https://github.com/atlassianps/atlassianps.configuration","last_synced_at":"2025-04-19T20:55:31.568Z","repository":{"id":144901811,"uuid":"131737594","full_name":"AtlassianPS/AtlassianPS.Configuration","owner":"AtlassianPS","description":"A module for AtlassianPS modules to use for managing connections","archived":false,"fork":false,"pushed_at":"2019-03-06T18:41:58.000Z","size":733,"stargazers_count":4,"open_issues_count":0,"forks_count":3,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-10-29T21:48:56.457Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://atlassianps.org/module/AtlassianPS.Configuration","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AtlassianPS.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null},"funding":{"github":["lipkau","atlassianps"]}},"created_at":"2018-05-01T16:44:01.000Z","updated_at":"2023-07-31T17:57:44.000Z","dependencies_parsed_at":"2023-07-22T02:39:00.188Z","dependency_job_id":null,"html_url":"https://github.com/AtlassianPS/AtlassianPS.Configuration","commit_stats":{"total_commits":91,"total_committers":5,"mean_commits":18.2,"dds":0.07692307692307687,"last_synced_commit":"555e8a3300a12e03b1d9c494a874fe21fe9bbccf"},"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtlassianPS%2FAtlassianPS.Configuration","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtlassianPS%2FAtlassianPS.Configuration/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtlassianPS%2FAtlassianPS.Configuration/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AtlassianPS%2FAtlassianPS.Configuration/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AtlassianPS","download_url":"https://codeload.github.com/AtlassianPS/AtlassianPS.Configuration/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224970038,"owners_count":17400294,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-16T21:12:16.763Z","updated_at":"2024-11-16T21:12:16.836Z","avatar_url":"https://github.com/AtlassianPS.png","language":"PowerShell","funding_links":["https://github.com/sponsors/lipkau","https://github.com/sponsors/atlassianps"],"categories":[],"sub_categories":[],"readme":"---\r\nlayout: module\r\npermalink: /module/AtlassianPS.Configuration/\r\n---\r\n# [AtlassianPS.Configuration](https://atlassianps.org/module/AtlassianPS.Configuration)\r\n\r\n[![GitHub release](https://img.shields.io/github/release/AtlassianPS/AtlassianPS.Configuration.svg?style=for-the-badge)](https://github.com/AtlassianPS/AtlassianPS.Configuration/releases/latest)\r\n[![Build Status](https://img.shields.io/vso/build/AtlassianPS/AtlassianPS.Configuration/8/master.svg?style=for-the-badge)](https://dev.azure.com/AtlassianPS/AtlassianPS.Configuration/_build/latest?definitionId=8)\r\n[![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/AtlassianPS.Configuration.svg?style=for-the-badge)](https://www.powershellgallery.com/packages/AtlassianPS.Configuration)\r\n![License](https://img.shields.io/badge/license-MIT-blue.svg?style=for-the-badge)\r\n\r\nAtlassianPS.Configuration is a module that offers a common set of tools to the [AtlassianPS] products to handle user-specific configuration.\r\n\r\nJoin the conversation on [![SlackLogo][] AtlassianPS.Slack.com](https://atlassianps.org/slack)\r\n\r\n[SlackLogo]: https://atlassianps.org/assets/img/Slack_Mark_Web_28x28.png\r\n\u003c!--more--\u003e\r\n\r\n---\r\n\r\n## Instructions\r\n\r\n### Installation\r\n\r\n\u003e This module does not need to be installed manually.  \r\n\u003e [AtlassianPS] products which use this module will install it automatically using the [PowerShell Gallery].\r\n\r\nInstall AtlassianPS.Configuration from the [PowerShell Gallery]! `Install-Module` requires PowerShellGet (included in PS v5, or download for v3/v4 via the gallery link)\r\n\r\n```powershell\r\n# One time only install:\r\nInstall-Module AtlassianPS.Configuration -Scope CurrentUser\r\n\r\n# Check for updates occasionally:\r\nUpdate-Module AtlassianPS.Configuration\r\n```\r\n\r\n### Usage\r\n\r\n\u003e This example uses [ConfluencePS](https://atlassianps.org/docs/ConfluencePS) for illustration.  \r\n\u003e This example uses [splatting](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_splatting).\r\n\r\n```powershell\r\nImport-Module ConfluencePS   # AtlassianPS.Configuration is imported automatically\r\n\r\n$serverData = @{\r\n    # BaseURL of the server\r\n    Uri = \"https://powershell.atlassian.net/wiki\"\r\n    # Name with which you want to address this server\r\n    ServerName = \"AtlassianPS - wiki\"\r\n    # Type of the Atlassian product\r\n    Type = \"Confluence\"\r\n}\r\nSet-AtlassianServerConfiguration @serverData\r\n\r\nGet-ConfluenceSpace -Server \"AtlassianPS - wiki\"\r\n```\r\n\r\nYou can find the full documentation on our [homepage](https://atlassianps.org/docs/AtlassianPS.Configuration) and in the console.\r\n\r\n### Contribute\r\n\r\nWant to contribute to AtlassianPS? Great!\r\nWe appreciate [everyone](https://atlassianps.org/#people) who invests their time to make our modules the best they can be.\r\n\r\nCheck out our guidelines on [Contributing] to our modules and documentation.\r\n\r\n## Useful links\r\n\r\n* [Source Code]\r\n* [Latest Release]\r\n* [Submit an Issue]\r\n* [Contributing]\r\n* How you can help us: [List of Issues](https://github.com/AtlassianPS/AtlassianPS.Configuration/issues?q=is%3Aissue+is%3Aopen+label%3Aup-for-grabs)\r\n\r\n## Disclaimer\r\n\r\nHopefully this is obvious, but:\r\n\r\n\u003e This is an open source project (under the [MIT license]), and all contributors are volunteers. All commands are executed at your own risk. Please have good backups before you start, because you can delete a lot of stuff if you're not careful.\r\n\r\n\u003c!-- reference-style links --\u003e\r\n  [AtlassianPS]: https://atlassianps.org/\r\n  [PowerShell Gallery]: https://www.powershellgallery.com/\r\n  [Source Code]: https://github.com/AtlassianPS/AtlassianPS.Configuration\r\n  [Latest Release]: https://github.com/AtlassianPS/AtlassianPS.Configuration/releases/latest\r\n  [Submit an Issue]: https://github.com/AtlassianPS/AtlassianPS.Configuration/issues/new\r\n  [MIT license]: https://github.com/AtlassianPS/AtlassianPS.Configuration/blob/master/LICENSE\r\n  [Contributing]: http://atlassianps.org/docs/Contributing\r\n\r\n\u003c!-- [//]: # (Sweet online markdown editor at http://dillinger.io) --\u003e\r\n\u003c!-- [//]: # (\"GitHub Flavored Markdown\" https://help.github.com/articles/github-flavored-markdown/) --\u003e\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatlassianps%2Fatlassianps.configuration","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatlassianps%2Fatlassianps.configuration","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatlassianps%2Fatlassianps.configuration/lists"}