State File - CI/CD用語集の定義
state file とは、IaC ツールが管理するリソースについて保持する記録で、設定を実世界のオブジェクトにマッピングし、何を作成、変更、破棄すべきかを把握できるようにします。
state file とは、IaC ツールが管理するリソースについて保持する記録で、設定を実世界のオブジェクトにマッピングし、何を作成、変更、破棄すべきかを把握できるようにします。
Terraform はこのマッピングを state file に保存します。それを失ったり破損させたりすると、コードがそれの制御するリソースから切り離されます。
関連ガイド
Remote State - CI/CD Glossary DefinitionRemote State: Remote state stores an IaC tool's state file in a shared backend (such as an S3 bucket or a man…
State Locking - CI/CD Glossary DefinitionState Locking: State locking prevents two runs from modifying the same IaC state at once by acquiring a lock…
Configuration Drift - CI/CD Glossary DefinitionConfiguration Drift: Drift is the divergence between a system's real configuration and the state declared in…