<@U04UQ68083H> how can I determine the configurati...
# ory-copilot
b
@chilly-king-10285 how can I determine the configuration changes that have been made with ory network
b
A message from kapa.ai
To determine the configuration changes made with Ory Network, you can use the Ory CLI to retrieve the current configuration and compare it with previous versions. Here's how you can do this: 1. Get the current configuration: You can use the
ory get
command to retrieve the current configuration for different components of your Ory Network project. For example:
Copy code
ory get identity-config --project <project-id> --workspace <workspace-id> --format yaml > current-config.yaml
This command will save the current Ory Identities configuration to a file named
current-config.yaml
. You can do the same for other components like OAuth2 & OpenID Connect or Permissions. 2. Compare with previous versions: If you've been managing your configuration in git, as suggested in the [Manage Ory Network configuration in git](https://www.ory.sh/docs/guides/gitops) guide, you can easily compare the current configuration with previous versions using git diff or your preferred diff tool. 3. Review changelogs: Ory provides changelogs for various components that might help you understand recent changes. You can check the [Ory Network Changelog](https://changelog.ory.sh/) for updates specific to Ory Network. It's important to note that Ory Network doesn't currently provide a built-in feature to automatically track configuration changes over time. However, by following a GitOps approach and regularly exporting your configuration, you can maintain a history of changes and easily determine what has been modified. For more detailed information on working with Ory Network configuration using the CLI, you can refer to the [Configure projects with Ory CLI](https://www.ory.sh/docs/guides/cli/config-with-cli) guide.