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
#!/bin/bash | |
# Generates terraform "moved" blocks for files based on terraform state | |
export OLD_MODULE="old_module_name" | |
export NEW_MODULE="" #LEAVE EMPTY to move to root module or enter "module.new_module." if you want to move to another module | |
terraform state list | | |
grep module.${OLD_MODULE} | cut -d. -f 3- | sed 's/\"/\\\"/g' | | |
xargs -I {} sh -c 'echo "moved {" && echo " from = module.${OLD_MODULE}.{}" && echo " to = ${NEW_MODULE}{}" && echo "}"' | sed 's/\]/\"]/g' | sed 's/\[/\["/g' | tr -d '\r' > moved-blocks.tf |
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
Terraform will perform the following actions: | |
# module.sentry[0].helm_release.sentry will be updated in-place | |
~ resource "helm_release" "sentry" { | |
id = "sentry" | |
~ metadata = [ | |
- { | |
- app_version = "23.7.1" | |
- chart = "sentry" | |
- name = "sentry" |
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
# Licensed under the MIT license. | |
# Copyright (C) 2022 Helsedirektoratet | |
# Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the | |
# "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, | |
# publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, | |
# subject to the following conditions: | |
# The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
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
Get-Date | |
Connect-AzAccount -TenantId 3aa4a235-b6e2-48d5-9195-7fcf05b459b0 | |
$appreg = Get-AzADApplication -ObjectId 2325bab4-1ebd-44b9-88fd-c299e97522fc | |
$appreg | Select-Object ApplicationId, AvailableToOtherTenants | |
$appreg | Select-Object ReplyUrls -ExpandProperty ReplyUrls | |
az account set --subscription "S105-Centuries-prod" | |
Get-Date |
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
# ---------------------------------------------------------------------------------- | |
# | |
# Copyright Microsoft Corporation | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |