https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/storage_account
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/storage_container
- resource-group.tf
1 2 3 4 5 |
resource "azurerm_resource_group" "log-hoge" { name = "log-hoge" location = "japaneast" tags = local.tags } |
- storage_account.tf
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
resource "azurerm_storage_account" "log-hoge" { name = "loghoge" resource_group_name = azurerm_resource_group.log-hoge.name location = azurerm_resource_group.log-hoge.location account_tier = "Standard" account_kind = "StorageV2" account_replication_type = "LRS" access_tier = "Hot" min_tls_version = "TLS1_2" tags = local.tags allow_nested_items_to_be_public = false } resource "azurerm_storage_container" "log-hoge" { name = "log-hoge" storage_account_name = azurerm_storage_account.log-hoge.name container_access_type = "private" } |
- subscription.tf
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
data "azurerm_subscription" "current" {} resource "azurerm_monitor_diagnostic_setting" "subscription" { name = "subscription" storage_account_id = azurerm_storage_account.log-hoge.id target_resource_id = data.azurerm_subscription.current.id log_analytics_workspace_id = data.terraform_remote_state.log-hoge.outputs.log_analytics_workspace_id_hoge enabled_log { category = "Administrative" retention_policy { days = 0 enabled = false } } enabled_log { category = "Security" retention_policy { days = 0 enabled = false } } enabled_log { category = "ServiceHealth" retention_policy { days = 0 enabled = false } } enabled_log { category = "Alert" retention_policy { days = 0 enabled = false } } enabled_log { category = "Recommendation" retention_policy { days = 0 enabled = false } } enabled_log { category = "Policy" retention_policy { days = 0 enabled = false } } enabled_log { category = "Autoscale" retention_policy { days = 0 enabled = false } } enabled_log { category = "ResourceHealth" retention_policy { days = 0 enabled = false } } } |
エクスポート先はストレージアカウントとLog Analytics ワークスペース。AWSだとS3とCloudWatch Logs的な。
Was this helpful?
0 / 0
1989年生まれのFindy/SRE。ホスティングから大規模なアドテクなどのインフラエンジニアとして携わる。現在はサービスの信頼性向上、DevOps、可用性、レイテンシ、パフォーマンス、モニタリング、オブザーバビリティ、緊急対応、AWSでのインフラ構築、Docker開発環境の提供、IaC、新技術の検証、リファクタリング、セキュリティ強化、分析基盤の運用などを担当している。個人事業主では数社サーバー保守とベンチャー企業のSREインフラコンサルティングやMENTA/TechBullで未経験者にインフラのコーチング/コミュニティマネージャーとして立ち上げと運営をしている。また、過去「脆弱性スキャナVuls」のOSS活動もしており、自称エバンジェリスト/技術広報/テクニカルサポート/コントリビュータでもある。