Skip to content

Instantly share code, notes, and snippets.

@yamamoto-febc
Created November 22, 2016 13:12
Show Gist options
  • Save yamamoto-febc/6efd50e288e3d9a9a87a09512967f7ce to your computer and use it in GitHub Desktop.
Save yamamoto-febc/6efd50e288e3d9a9a87a09512967f7ce to your computer and use it in GitHub Desktop.
GSLBをDataResourceとして参照/利用する場合のtfファイル
# あらかじめさくらのクラウド上に"TargetGSLBName"というGSLBを手動で作成
# 配下のサーバーのみをTerraformで管理する場合
data sakuracloud_gslb "gslb" {
filter = {
name = "Name"
values = ["TargetGSLBName"]
}
}
resource "sakuracloud_gslb_server" "gslb_server01" {
gslb_id = "${data.sakuracloud_gslb.gslb.id}"
ipaddress = "8.8.8.8"
}
resource "sakuracloud_gslb_server" "gslb_server02" {
gslb_id = "${data.sakuracloud_gslb.gslb.id}"
ipaddress = "8.8.4.4"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment