Apply (IaC) - CI/CD用語集の定義
apply は、IaC ツールが計算した変更を実行し、実際のリソースを作成、更新、削除して、現在の状態を望ましい状態に一致させます。
apply は、IaC ツールが計算した変更を実行し、実際のリソースを作成、更新、削除して、現在の状態を望ましい状態に一致させます。
典型的な pipeline は、レビューのために plan を実行し、merge 時に apply を実行するため、インフラの変更はコードと同じ方法で出荷されます。
関連ガイド
Plan (IaC) - CI/CD Glossary DefinitionPlan (IaC): A plan is a preview an IaC tool generates showing exactly which resources it would create, change…
Destroy (IaC) - CI/CD Glossary DefinitionDestroy (IaC): A destroy removes all resources an IaC configuration manages, tearing down infrastructure in d…
Idempotent Operation - CI/CD Glossary DefinitionIdempotent Operation: An idempotent operation produces the same result whether it runs once or many times, so…