{"id":390,"date":"2024-11-29T23:13:00","date_gmt":"2024-11-29T23:13:00","guid":{"rendered":"http:\/\/blog.firatyasar.com\/?p=390"},"modified":"2025-03-29T23:19:25","modified_gmt":"2025-03-29T23:19:25","slug":"deploy-azure-aks-with-terraform-or-azure-cli-quick","status":"publish","type":"post","link":"https:\/\/blog.firatyasar.com\/?p=390","title":{"rendered":"Deploy Azure AKS with Terraform or Azure CLI &#8211; Quick Implement"},"content":{"rendered":"\n<p>Bu k\u0131sa makalemizde terraform kullanarak \u00e7ok h\u0131zl\u0131 \u015fekilde AKS cluster&#8217;\u0131 nas\u0131l deploy edebilece\u011finizi g\u00f6sterece\u011fim.<\/p>\n\n\n\n<h2>Terraform Gereksinimleri<\/h2>\n\n\n\n<p>Terraform kullanarak AKS \u00fczerine uygulama deploy etmek i\u00e7in a\u015fa\u011f\u0131daki gereksinimler sa\u011flanmal\u0131d\u0131r:<\/p>\n\n\n\n<ul><li>Terraform v1.5+<\/li><li>Azure CLI v2.45.0+<\/li><li>AKS Cluster<\/li><li>tfvars dosyalar\u0131<\/li><\/ul>\n\n\n\n<p><strong>Terraform ile Deploy<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>terraform init<\/code><\/pre>\n\n\n\n<p>\u00d6rnek uygulamay\u0131 deploy etmeden \u00f6nce a\u015fa\u011f\u0131daki parametreleri tfvars dosyas\u0131nda g\u00fcncelliyoruz.<\/p>\n\n\n\n<ul><li><strong>cluster_name&nbsp;<\/strong>\u2013 Deploy edece\u011fimiz AKS cluster\u2019\u0131n\u0131n ad\u0131.<\/li><li><strong>resource_group_name<\/strong>&nbsp;\u2013 AKS cluster\u2019\u0131n\u0131n bulundu\u011fu rg.<\/li><li><strong>subscription_id<\/strong>&nbsp;\u2013 AKS cluster\u2019\u0131n bulundu\u011fu subscription\u2019\u0131n id\u2019si.<\/li><\/ul>\n\n\n\n<p>Varsay\u0131lan config ile deploy etmek i\u00e7in a\u015fa\u011f\u0131daki komutu kullanabiliriz.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>terraform apply -var-file=\"azure-vote-without-config.tfvars\"<\/code><\/pre>\n\n\n\n<p>\u00d6zelle\u015ftirilmi\u015f yap\u0131land\u0131rmayla deploy etmek i\u00e7in gereken komut:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>terraform apply -var-file=\"azure-vote-with-config.tfvars\"<\/code><\/pre>\n\n\n\n<p>Azure CLI ile Deploy<\/p>\n\n\n\n<p>Azure hesab\u0131m\u0131za login oluyoruz.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>az login<\/code><\/pre>\n\n\n\n<p>Subscription\u2019\u0131 set ediyoruz.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>az account set --subscription &lt;subscription_id><\/code><\/pre>\n\n\n\n<p>azure-vote uygulamas\u0131n\u0131 deploy etmek i\u00e7in a\u015fa\u011f\u0131daki komutu \u00e7al\u0131\u015ft\u0131r\u0131yoruz.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>az k8s-extension create --name azure-vote \\\r\n  --scope cluster \\\r\n  --cluster-name &lt;clusterName> \\\r\n  --resource-group &lt;resourceGroupName> \\\r\n  --cluster-type managedClusters \\\r\n  --extension-type commercialMarketplaceServices.AzureVote \\\r\n  --plan-name azure-vote-paid \\\r\n  --plan-product azure-vote-final-1 \\\r\n  --plan-publisher microsoft_commercial_marketplace_services \\\r\n  --configuration-settings title=VoteAnimal value1=Cats value2=Dogs\r\n\n<\/code><\/pre>\n\n\n\n<p>Config\u2019i g\u00fcncellemek i\u00e7in:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>az k8s-extension update --name azure-vote \\\r\n--cluster-name &lt;clusterName> \\\r\n--resource-group &lt;resourceGroupName> \\\r\n--cluster-type managedClusters \\\r\n--configuration-settings value1=Elephant value2=Horse\r\n<\/code><\/pre>\n\n\n\n<h2>Sonu\u00e7<\/h2>\n\n\n\n<p>Terraform ve Azure CLI ile Kubernetes uygulamalar\u0131n\u0131 deploy etmek, s\u00fcreci otomatize eder ve kodla y\u00f6netilebilir hale getirir. Bu y\u00f6ntem, Infrastructure-as-Code yakla\u015f\u0131m\u0131yla tekrarlanabilir ve s\u00fcrd\u00fcr\u00fclebilir da\u011f\u0131t\u0131mlar sa\u011flar.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Bu k\u0131sa makalemizde terraform kullanarak \u00e7ok h\u0131zl\u0131 \u015fekilde AKS cluster&#8217;\u0131 nas\u0131l deploy edebilece\u011finizi g\u00f6sterece\u011fim. Terraform Gereksinimleri Terraform kullanarak AKS \u00fczerine uygulama deploy etmek i\u00e7in a\u015fa\u011f\u0131daki gereksinimler sa\u011flanmal\u0131d\u0131r: Terraform v1.5+ Azure CLI v2.45.0+ AKS Cluster tfvars dosyalar\u0131 Terraform ile Deploy \u00d6rnek uygulamay\u0131 deploy etmeden \u00f6nce a\u015fa\u011f\u0131daki parametreleri tfvars dosyas\u0131nda g\u00fcncelliyoruz. cluster_name&nbsp;\u2013 Deploy edece\u011fimiz AKS cluster\u2019\u0131n\u0131n ad\u0131.\u2026 <span class=\"read-more\"><a href=\"https:\/\/blog.firatyasar.com\/?p=390\">Read More &raquo;<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":22,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[85,75,165,166,133],"_links":{"self":[{"href":"https:\/\/blog.firatyasar.com\/index.php?rest_route=\/wp\/v2\/posts\/390"}],"collection":[{"href":"https:\/\/blog.firatyasar.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.firatyasar.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.firatyasar.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.firatyasar.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=390"}],"version-history":[{"count":2,"href":"https:\/\/blog.firatyasar.com\/index.php?rest_route=\/wp\/v2\/posts\/390\/revisions"}],"predecessor-version":[{"id":392,"href":"https:\/\/blog.firatyasar.com\/index.php?rest_route=\/wp\/v2\/posts\/390\/revisions\/392"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/blog.firatyasar.com\/index.php?rest_route=\/wp\/v2\/media\/22"}],"wp:attachment":[{"href":"https:\/\/blog.firatyasar.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=390"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.firatyasar.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=390"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.firatyasar.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=390"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}