Skip to content

Commit

Permalink
Merge pull request #7 from pasokonistan/discord-set-icon
Browse files Browse the repository at this point in the history
Discord: set icon
  • Loading branch information
sksat authored Mar 18, 2023
2 parents ef23499 + ac23a55 commit d9c1f38
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions terraform/discord/discord.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ provider "discord" {
}

resource "discord_server" "pasokonistan" {
name = "パソコニスタン"
region = "japan"
name = "パソコニスタン"
region = "japan"
icon_data_uri = data.discord_local_image.logo.data_uri
}
data "discord_local_image" "logo" {
file = "./computer_screen_programming.png"
}

resource "discord_category_channel" "pasokon" {
Expand Down

0 comments on commit d9c1f38

Please sign in to comment.